166 lines
3.8 KiB
TypeScript
166 lines
3.8 KiB
TypeScript
'use strict'; // necessary for es6 output in node
|
|
|
|
import { browser, element, by } from 'protractor';
|
|
|
|
describe('Upgrade Tests', function () {
|
|
|
|
beforeAll(function () {
|
|
// Set protractor to hybrid mode.
|
|
browser.rootEl = 'body';
|
|
browser.ng12Hybrid = true;
|
|
});
|
|
|
|
describe('AngularJS Auto-bootstrap', function() {
|
|
|
|
beforeAll(function () {
|
|
browser.get('/index-ng-app.html');
|
|
});
|
|
|
|
it('bootstraps as expected', function () {
|
|
expect(element(by.css('#message')).getText()).toEqual('Hello world');
|
|
});
|
|
|
|
});
|
|
|
|
describe('AngularJS JavaScript Bootstrap', function() {
|
|
|
|
beforeAll(function () {
|
|
browser.get('/index-bootstrap.html');
|
|
});
|
|
|
|
it('bootstraps as expected', function () {
|
|
expect(element(by.css('#message')).getText()).toEqual('Hello world');
|
|
});
|
|
|
|
});
|
|
|
|
describe('AngularJS-Angular Hybrid Bootstrap', function() {
|
|
|
|
beforeAll(function () {
|
|
browser.get('/index-ajs-a-hybrid-bootstrap.html');
|
|
});
|
|
|
|
it('bootstraps as expected', function () {
|
|
expect(element(by.css('#message')).getText()).toEqual('Hello world');
|
|
});
|
|
|
|
});
|
|
|
|
describe('Upgraded static component', function() {
|
|
|
|
beforeAll(function () {
|
|
browser.get('/index-upgrade-static.html');
|
|
});
|
|
|
|
it('renders', function () {
|
|
expect(element(by.css('h2')).getText()).toEqual('Windstorm details!');
|
|
});
|
|
|
|
});
|
|
|
|
|
|
describe('Upgraded component with IO', function() {
|
|
|
|
beforeAll(function () {
|
|
browser.get('/index-upgrade-io.html');
|
|
});
|
|
|
|
it('has inputs', function () {
|
|
expect(element(by.css('h2')).getText()).toEqual('Windstorm details!');
|
|
});
|
|
|
|
it('has outputs', function () {
|
|
element(by.buttonText('Delete')).click();
|
|
expect(element(by.css('h2')).getText()).toEqual('Ex-Windstorm details!');
|
|
});
|
|
|
|
});
|
|
|
|
|
|
describe('Downgraded static component', function() {
|
|
|
|
beforeAll(function () {
|
|
browser.get('/index-downgrade-static.html');
|
|
});
|
|
|
|
it('renders', function () {
|
|
expect(element(by.css('h2')).getText()).toEqual('Windstorm details!');
|
|
});
|
|
|
|
});
|
|
|
|
describe('Downgraded component with IO', function() {
|
|
|
|
beforeAll(function () {
|
|
browser.get('/index-downgrade-io.html');
|
|
});
|
|
|
|
it('has inputs', function () {
|
|
expect(element.all(by.css('h2')).first().getText()).toEqual('Windstorm details!');
|
|
});
|
|
|
|
it('has outputs', function () {
|
|
element.all(by.buttonText('Delete')).first().click();
|
|
expect(element.all(by.css('h2')).first().getText()).toEqual('Ex-Windstorm details!');
|
|
});
|
|
|
|
it('supports ng-repeat', function () {
|
|
expect(element.all(by.css('hero-detail')).count()).toBe(3);
|
|
});
|
|
|
|
});
|
|
|
|
|
|
describe('Downgraded component with content projection', function() {
|
|
|
|
beforeAll(function () {
|
|
browser.get('/index-ajs-to-a-projection.html');
|
|
});
|
|
|
|
it('can be transcluded into', function () {
|
|
expect(element(by.css('hero-detail')).getText()).toContain('Specific powers of controlling winds');
|
|
});
|
|
|
|
});
|
|
|
|
|
|
describe('Upgraded component with transclusion', function() {
|
|
|
|
beforeAll(function () {
|
|
browser.get('/index-a-to-ajs-transclusion.html');
|
|
});
|
|
|
|
it('can be projected into', function () {
|
|
expect(element(by.css('hero-detail')).getText()).toContain('Specific powers of controlling winds');
|
|
});
|
|
|
|
});
|
|
|
|
|
|
describe('Upgrading AngularJS Providers', function() {
|
|
|
|
beforeAll(function () {
|
|
browser.get('/index-ajs-to-a-providers.html');
|
|
});
|
|
|
|
it('works', function () {
|
|
expect(element(by.css('h2')).getText()).toBe('1: Windstorm');
|
|
});
|
|
|
|
});
|
|
|
|
|
|
describe('Downgrading Angular Providers', function() {
|
|
|
|
beforeAll(function () {
|
|
browser.get('/index-a-to-ajs-providers.html');
|
|
});
|
|
|
|
it('works', function () {
|
|
expect(element(by.css('h2')).getText()).toBe('1: Windstorm');
|
|
});
|
|
|
|
});
|
|
|
|
});
|