aboutsummaryrefslogtreecommitdiff
path: root/catapult/third_party/polymer/components/iron-checked-element-behavior/test
diff options
context:
space:
mode:
Diffstat (limited to 'catapult/third_party/polymer/components/iron-checked-element-behavior/test')
-rw-r--r--catapult/third_party/polymer/components/iron-checked-element-behavior/test/basic.html152
-rw-r--r--catapult/third_party/polymer/components/iron-checked-element-behavior/test/index.html31
-rw-r--r--catapult/third_party/polymer/components/iron-checked-element-behavior/test/simple-checkbox.html26
3 files changed, 209 insertions, 0 deletions
diff --git a/catapult/third_party/polymer/components/iron-checked-element-behavior/test/basic.html b/catapult/third_party/polymer/components/iron-checked-element-behavior/test/basic.html
new file mode 100644
index 00000000..4c13dd8c
--- /dev/null
+++ b/catapult/third_party/polymer/components/iron-checked-element-behavior/test/basic.html
@@ -0,0 +1,152 @@
+<!doctype html>
+<!--
+@license
+Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
+This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
+The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
+The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
+Code distributed by Google as part of the polymer project is also
+subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
+-->
+<html>
+<head>
+ <meta charset="UTF-8">
+ <title>iron-checked-element-behavior basic tests</title>
+ <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
+
+ <script src="../../webcomponentsjs/webcomponents.js"></script>
+ <script src="../../web-component-tester/browser.js"></script>
+ <script src="../../test-fixture/test-fixture-mocha.js"></script>
+
+ <link href="../../test-fixture/test-fixture.html" rel="import">
+ <link href="../../iron-meta/iron-meta.html" rel="import">
+ <link href="simple-checkbox.html" rel="import">
+
+</head>
+<body>
+
+ <test-fixture id="basic">
+ <template>
+ <simple-checkbox></simple-checkbox>
+ </template>
+ </test-fixture>
+
+ <test-fixture id="checked">
+ <template>
+ <simple-checkbox checked></simple-checkbox>
+ </template>
+ </test-fixture>
+
+ <test-fixture id="with-value">
+ <template>
+ <simple-checkbox value="batman"></simple-checkbox>
+ </template>
+ </test-fixture>
+
+ <script>
+
+ suite('basic', function() {
+ test('can be checked', function() {
+ var c = fixture('basic');
+ assert.isFalse(c.checked);
+ c.checked = true;
+ assert.isTrue(c.checked);
+ });
+
+ test('can be unchecked', function() {
+ var c = fixture('checked');
+ assert.isTrue(c.checked);
+ c.checked = false;
+ assert.isFalse(c.checked);
+ });
+
+ test('invalid if required and not checked', function() {
+ var c = fixture('basic');
+ c.required = true;
+ assert.isFalse(c.checked);
+ assert.isFalse(c.validate());
+ assert.isTrue(c.invalid);
+ });
+
+ test('valid if required and checked', function() {
+ var c = fixture('basic');
+ c.required = true;
+ c.checked = true;
+ assert.isTrue(c.checked);
+ assert.isTrue(c.validate());
+ assert.isFalse(c.invalid);
+ });
+
+ test('valid if not required and not checked', function() {
+ var c = fixture('basic');
+ assert.isFalse(c.checked);
+ assert.isTrue(c.validate());
+ assert.isFalse(c.invalid);
+ });
+
+ test('has a default value of "on", always', function() {
+ var c = fixture('basic');
+
+ assert.isTrue(c.value === 'on');
+
+ c.checked = true;
+ assert.isTrue(c.value === 'on');
+ });
+
+ test('does not stomp over user defined value when checked', function() {
+ var c = fixture('with-value');
+ assert.isTrue(c.value === 'batman');
+
+ c.checked = true;
+ assert.isTrue(c.value === 'batman');
+ });
+
+ test('value returns "on" when no explicit value is specified', function() {
+ var c = fixture('basic');
+
+ assert.equal(c.value, 'on', 'returns "on"');
+ });
+
+ test('value returns the value when an explicit value is set', function() {
+ var c = fixture('basic');
+
+ c.value = 'abc';
+ assert.equal(c.value, 'abc', 'returns "abc"');
+
+ c.value = '123';
+ assert.equal(c.value, '123', 'returns "123"');
+ });
+
+ test('value returns "on" when value is set to undefined', function() {
+ var c = fixture('basic');
+
+ c.value = 'abc';
+ assert.equal(c.value, 'abc', 'returns "abc"');
+
+ c.value = undefined;
+ assert.equal(c.value, 'on', 'returns "on"');
+ });
+ });
+
+ suite('a11y', function() {
+ test('setting `required` sets `aria-required=true`', function() {
+ var c = fixture('basic');
+ c.required = true;
+ assert.equal(c.getAttribute('aria-required'), 'true');
+ c.required = false;
+ assert.isFalse(c.hasAttribute('aria-required'));
+ });
+
+ test('setting `invalid` sets `aria-invalid=true`', function() {
+ var c = fixture('basic');
+ c.invalid = true;
+ assert.equal(c.getAttribute('aria-invalid'), 'true');
+ c.invalid = false;
+ assert.isFalse(c.hasAttribute('aria-invalid'));
+ });
+ });
+
+ </script>
+
+</body>
+</html>
diff --git a/catapult/third_party/polymer/components/iron-checked-element-behavior/test/index.html b/catapult/third_party/polymer/components/iron-checked-element-behavior/test/index.html
new file mode 100644
index 00000000..1ddeca33
--- /dev/null
+++ b/catapult/third_party/polymer/components/iron-checked-element-behavior/test/index.html
@@ -0,0 +1,31 @@
+<!DOCTYPE html><!--
+@license
+Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
+This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
+The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
+The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
+Code distributed by Google as part of the polymer project is also
+subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
+--><html><head>
+
+ <title>iron-checked-element-behavior tests</title>
+
+ <meta charset="utf-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+ <meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1, user-scalable=yes">
+
+ <script src="../../web-component-tester/browser.js"></script>
+
+ </head>
+ <body>
+
+ <script>
+ WCT.loadSuites([
+ 'basic.html',
+ 'basic.html?dom=shadow'
+ ]);
+ </script>
+
+
+
+</body></html>
diff --git a/catapult/third_party/polymer/components/iron-checked-element-behavior/test/simple-checkbox.html b/catapult/third_party/polymer/components/iron-checked-element-behavior/test/simple-checkbox.html
new file mode 100644
index 00000000..95228fae
--- /dev/null
+++ b/catapult/third_party/polymer/components/iron-checked-element-behavior/test/simple-checkbox.html
@@ -0,0 +1,26 @@
+<!--
+@license
+Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
+This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
+The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
+The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
+Code distributed by Google as part of the polymer project is also
+subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
+-->
+
+<link rel="import" href="../../polymer/polymer.html">
+<link rel="import" href="../iron-checked-element-behavior.html">
+
+<script>
+
+ Polymer({
+
+ is: 'simple-checkbox',
+
+ behaviors: [
+ Polymer.IronCheckedElementBehavior
+ ]
+
+ });
+
+</script>