
Potentially related: https://github.com/Polymer/web-component-tester/issues/505 Bug: Issue 5792 Change-Id: I9ab6e8e40d9811dd52906335426764c052907609
150 lines
4.1 KiB
HTML
150 lines
4.1 KiB
HTML
<!DOCTYPE html>
|
|
<!--
|
|
Copyright (C) 2016 The Android Open Source Project
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
|
|
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">
|
|
<title>gr-registration-dialog</title>
|
|
|
|
<script src="../../../bower_components/webcomponentsjs/webcomponents-lite.min.js"></script>
|
|
<script src="../../../bower_components/web-component-tester/browser.js"></script>
|
|
|
|
<link rel="import" href="../../../bower_components/iron-test-helpers/iron-test-helpers.html">
|
|
<link rel="import" href="gr-registration-dialog.html">
|
|
|
|
<script>void(0);</script>
|
|
|
|
<test-fixture id="basic">
|
|
<template>
|
|
<gr-registration-dialog></gr-registration-dialog>
|
|
</template>
|
|
</test-fixture>
|
|
|
|
<test-fixture id="blank">
|
|
<template>
|
|
<div></div>
|
|
</template>
|
|
</test-fixture>
|
|
|
|
<script>
|
|
suite('gr-registration-dialog tests', function() {
|
|
var element;
|
|
var account;
|
|
var _listeners;
|
|
|
|
setup(function(done) {
|
|
_listeners = {};
|
|
|
|
account = {
|
|
name: 'name',
|
|
email: 'email',
|
|
secondary_emails: [
|
|
'email2',
|
|
'email3',
|
|
],
|
|
};
|
|
|
|
stub('gr-rest-api-interface', {
|
|
getAccount: function() {
|
|
// Once the account is resolved, we can let the test proceed.
|
|
flush(done);
|
|
return Promise.resolve(account);
|
|
},
|
|
setAccountName: function(name) {
|
|
account.name = name;
|
|
return Promise.resolve();
|
|
},
|
|
setPreferredAccountEmail: function(email) {
|
|
account.email = email;
|
|
return Promise.resolve();
|
|
},
|
|
});
|
|
|
|
element = fixture('basic');
|
|
});
|
|
|
|
teardown(function() {
|
|
for (var eventType in _listeners) {
|
|
if (_listeners.hasOwnProperty(eventType)) {
|
|
element.removeEventListener(eventType, _listeners[eventType]);
|
|
}
|
|
}
|
|
});
|
|
|
|
function listen(eventType) {
|
|
return new Promise(function(resolve) {
|
|
_listeners[eventType] = function() { resolve(); };
|
|
element.addEventListener(eventType, _listeners[eventType]);
|
|
});
|
|
}
|
|
|
|
function save(opt_action) {
|
|
var promise = listen('account-detail-update');
|
|
if (opt_action) {
|
|
opt_action();
|
|
} else {
|
|
MockInteractions.tap(element.$.saveButton);
|
|
}
|
|
return promise;
|
|
}
|
|
|
|
function close(opt_action) {
|
|
var promise = listen('close');
|
|
if (opt_action) {
|
|
opt_action();
|
|
} else {
|
|
MockInteractions.tap(element.$.closeButton);
|
|
}
|
|
return promise;
|
|
}
|
|
|
|
test('fires the close event on close', function(done) {
|
|
close().then(done);
|
|
});
|
|
|
|
test('fires the close event on save', function(done) {
|
|
close(function() {
|
|
MockInteractions.tap(element.$.saveButton);
|
|
}).then(done);
|
|
});
|
|
|
|
test('saves name and preferred email', function(done) {
|
|
flush(function() {
|
|
element.$.name.value = 'new name';
|
|
element.$.email.value = 'email3';
|
|
|
|
// Nothing should be committed yet.
|
|
assert.equal(account.name, 'name');
|
|
assert.equal(account.email, 'email');
|
|
|
|
// Save and verify new values are committed.
|
|
save().then(function() {
|
|
assert.equal(account.name, 'new name');
|
|
assert.equal(account.email, 'email3');
|
|
}).then(done);
|
|
});
|
|
});
|
|
|
|
test('pressing enter saves name', function(done) {
|
|
element.$.name.value = 'entered name';
|
|
save(function() {
|
|
MockInteractions.pressAndReleaseKeyOn(element.$.name, 13); // 'enter'
|
|
}).then(function() {
|
|
assert.equal(account.name, 'entered name');
|
|
}).then(done);
|
|
});
|
|
});
|
|
</script>
|