Dave Borowitz 8cdc76ba4c Add @license tags to PG HTML and JS assets
These tags are preserved by the Closure compiler and vulcanize in order
to serve the license notices embedded in the outputs. In a standalone
Gerrit server, these license are also covered in the LICENSES.txt served
with the documentation. When serving PG assets from a CDN, it's less
obvious what the corresponding LICENSES.txt file is, since the CDN is
not directly linked to a running Gerrit server. Safer to embed the
licenses in the assets themselves.

Change-Id: Id1add1451fad1baa7916882a6bda02c326ccc988
2018-03-26 10:47:55 -04:00

139 lines
4.0 KiB
HTML

<!DOCTYPE html>
<!--
@license
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-account-label</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="../../../test/common-test-setup.html"/>
<script src="../../../scripts/util.js"></script>
<link rel="import" href="gr-account-label.html">
<script>void(0);</script>
<test-fixture id="basic">
<template>
<gr-account-label></gr-account-label>
</template>
</test-fixture>
<script>
suite('gr-account-label tests', () => {
let element;
setup(() => {
stub('gr-rest-api-interface', {
getConfig() { return Promise.resolve({}); },
getLoggedIn() { return Promise.resolve(false); },
});
element = fixture('basic');
element._config = {
user: {
anonymous_coward_name: 'Anonymous Coward',
},
};
});
test('null guard', () => {
assert.doesNotThrow(() => {
element.account = null;
});
});
test('missing email', () => {
assert.equal('', element._computeEmailStr({name: 'foo'}));
});
test('computed fields', () => {
assert.equal(element._computeAccountTitle(
{
name: 'Andrew Bonventre',
email: 'andybons+gerrit@gmail.com',
}),
'Andrew Bonventre <andybons+gerrit@gmail.com>');
assert.equal(element._computeAccountTitle(
{name: 'Andrew Bonventre'}),
'Andrew Bonventre');
assert.equal(element._computeAccountTitle(
{
email: 'andybons+gerrit@gmail.com',
}),
'Anonymous <andybons+gerrit@gmail.com>');
assert.equal(element._computeShowEmailClass(
{
name: 'Andrew Bonventre',
email: 'andybons+gerrit@gmail.com',
}), '');
assert.equal(element._computeShowEmailClass(
{
email: 'andybons+gerrit@gmail.com',
}), 'showEmail');
assert.equal(element._computeShowEmailClass({name: 'Andrew Bonventre'}),
'');
assert.equal(element._computeShowEmailClass(undefined), '');
assert.equal(
element._computeEmailStr({name: 'test', email: 'test'}), '(test)');
assert.equal(element._computeEmailStr({email: 'test'}, ''), 'test');
});
suite('_computeName', () => {
test('not showing anonymous', () => {
const account = {name: 'Wyatt'};
assert.deepEqual(element._computeName(account, null), 'Wyatt');
});
test('showing anonymous but no config', () => {
const account = {};
assert.deepEqual(element._computeName(account, null),
'Anonymous');
});
test('test for Anonymous Coward user and replace with Anonymous', () => {
const config = {
user: {
anonymous_coward_name: 'Anonymous Coward',
},
};
const account = {};
assert.deepEqual(element._computeName(account, config),
'Anonymous');
});
test('test for anonymous_coward_name', () => {
const config = {
user: {
anonymous_coward_name: 'TestAnon',
},
};
const account = {};
assert.deepEqual(element._computeName(account, config),
'TestAnon');
});
});
});
</script>