test(aio): fix and clean up e2e tests

This commit is contained in:
George Kalpakas 2017-11-13 22:56:01 +02:00 committed by Alex Rickabaugh
parent cbe7e39bbe
commit 0d47c39609
2 changed files with 31 additions and 22 deletions

View File

@ -7,15 +7,16 @@ describe('site App', function() {
beforeEach(() => { beforeEach(() => {
SitePage.setWindowWidth(1050); // Make the window wide enough to show the SideNav side-by-side. SitePage.setWindowWidth(1050); // Make the window wide enough to show the SideNav side-by-side.
page = new SitePage(); page = new SitePage();
page.navigateTo();
}); });
it('should show features text after clicking "Features"', () => { it('should show features text after clicking "Features"', () => {
page.navigateTo('');
page.getTopMenuLink('features').click(); page.getTopMenuLink('features').click();
expect(page.getDocViewerText()).toMatch(/Progressive web apps/i); expect(page.getDocViewerText()).toMatch(/Progressive web apps/i);
}); });
it('should set appropriate window titles', () => { it('should set appropriate window titles', () => {
page.navigateTo('');
expect(browser.getTitle()).toBe('Angular'); expect(browser.getTitle()).toBe('Angular');
page.getTopMenuLink('features').click(); page.getTopMenuLink('features').click();
@ -25,9 +26,9 @@ describe('site App', function() {
expect(browser.getTitle()).toBe('Angular'); expect(browser.getTitle()).toBe('Angular');
}); });
it('should show the tutorial index page at `/tutorial/` after jitterbugging through features', () => { it('should show the tutorial index page at `/tutorial` after jitterbugging through features', () => {
// check that we can navigate directly to the tutorial page // check that we can navigate directly to the tutorial page
page.navigateTo('tutorial/'); page.navigateTo('tutorial');
expect(page.getDocViewerText()).toMatch(/Tutorial: Tour of Heroes/i); expect(page.getDocViewerText()).toMatch(/Tutorial: Tour of Heroes/i);
// navigate to a different page // navigate to a different page
@ -52,24 +53,24 @@ describe('site App', function() {
describe('scrolling to the top', () => { describe('scrolling to the top', () => {
it('should scroll to the top when navigating to another page', () => { it('should scroll to the top when navigating to another page', () => {
page.navigateTo('guide/security'); page.navigateTo('guide/security');
browser.sleep(1000); // Wait for initial async scroll-to-top after `onDocRendered`.
page.scrollToBottom(); page.scrollToBottom();
page.getScrollTop().then(scrollTop => expect(scrollTop).toBeGreaterThan(0)); expect(page.getScrollTop()).toBeGreaterThan(0);
page.navigateTo('api'); page.getNavItem(/api/i).click();
page.getScrollTop().then(scrollTop => expect(scrollTop).toBe(0)); expect(page.locationPath()).toBe('/api');
expect(page.getScrollTop()).toBe(0);
}); });
it('should scroll to the top when navigating to the same page', () => { it('should scroll to the top when navigating to the same page', () => {
page.navigateTo('guide/security'); page.navigateTo('guide/security');
browser.sleep(1000); // Wait for initial async scroll-to-top after `onDocRendered`.
page.scrollToBottom(); page.scrollToBottom();
page.getScrollTop().then(scrollTop => expect(scrollTop).toBeGreaterThan(0)); expect(page.getScrollTop()).toBeGreaterThan(0);
page.navigateTo('guide/security'); page.getNavItem(/security/i).click();
page.getScrollTop().then(scrollTop => expect(scrollTop).toBe(0)); expect(page.locationPath()).toBe('/guide/security');
expect(page.getScrollTop()).toBe(0);
}); });
}); });
@ -87,42 +88,50 @@ describe('site App', function() {
page.navigateTo('api'); page.navigateTo('api');
page.locationPath() page.locationPath()
.then(p => path = p) .then(p => path = p)
.then(() => page.ga().then(calls => { .then(() => page.ga())
.then(calls => {
// The last call (length-1) will be the `send` command // The last call (length-1) will be the `send` command
// The second to last call (length-2) will be the command to `set` the page url // The second to last call (length-2) will be the command to `set` the page url
expect(calls[calls.length - 2]).toEqual(['set', 'page', path]); expect(calls[calls.length - 2]).toEqual(['set', 'page', path]);
done(); done();
})); });
}); });
it('should call ga with new URL on navigation', done => { it('should call ga with new URL on navigation', done => {
let path: string; let path: string;
page.navigateTo('');
page.getTopMenuLink('features').click(); page.getTopMenuLink('features').click();
page.locationPath() page.locationPath()
.then(p => path = p) .then(p => path = p)
.then(() => page.ga().then(calls => { .then(() => page.ga())
.then(calls => {
// The last call (length-1) will be the `send` command // The last call (length-1) will be the `send` command
// The second to last call (length-2) will be the command to `set` the page url // The second to last call (length-2) will be the command to `set` the page url
expect(calls[calls.length - 2]).toEqual(['set', 'page', path]); expect(calls[calls.length - 2]).toEqual(['set', 'page', path]);
done(); done();
})); });
}); });
}); });
describe('search', () => { describe('search', () => {
it('should find pages when searching by a partial word in the title', () => { it('should find pages when searching by a partial word in the title', () => {
page.navigateTo('');
page.enterSearch('ngCont'); page.enterSearch('ngCont');
expect(page.getSearchResults().map(link => link.getText())).toContain('NgControl'); expect(page.getSearchResults()).toContain('NgControl');
page.enterSearch('accessor'); page.enterSearch('accessor');
expect(page.getSearchResults().map(link => link.getText())).toContain('ControlValueAccessor'); expect(page.getSearchResults()).toContain('ControlValueAccessor');
}); });
}); });
describe('404 page', () => { describe('404 page', () => {
it('should search the index for words found in the url', () => { it('should search the index for words found in the url', () => {
page.navigateTo('http/router'); page.navigateTo('http/router');
expect(page.getSearchResults().map(link => link.getText())).toContain('Http'); const results = page.getSearchResults();
expect(page.getSearchResults().map(link => link.getText())).toContain('Router');
expect(results).toContain('Http');
expect(results).toContain('Router');
}); });
}); });
}); });

View File

@ -28,8 +28,8 @@ export class SitePage {
ga() { return browser.executeScript('return window["ga"].q') as promise.Promise<any[][]>; } ga() { return browser.executeScript('return window["ga"].q') as promise.Promise<any[][]>; }
locationPath() { return browser.executeScript('return document.location.pathname') as promise.Promise<string>; } locationPath() { return browser.executeScript('return document.location.pathname') as promise.Promise<string>; }
navigateTo(pageUrl = '') { navigateTo(pageUrl) {
return browser.get('/' + pageUrl); return browser.get('/' + pageUrl).then(() => browser.waitForAngular());
} }
getDocViewerText() { getDocViewerText() {
@ -59,6 +59,6 @@ export class SitePage {
getSearchResults() { getSearchResults() {
const results = element.all(by.css('.search-results li')); const results = element.all(by.css('.search-results li'));
browser.wait(ExpectedConditions.presenceOf(results.first()), 8000); browser.wait(ExpectedConditions.presenceOf(results.first()), 8000);
return results; return results.map(link => link.getText());
} }
} }