2015-12-20 16:17:16 -05:00
|
|
|
describe('Lifecycle hooks', function () {
|
|
|
|
|
|
|
|
beforeAll(function () {
|
|
|
|
browser.get('');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should open correctly', function () {
|
|
|
|
expect(element.all(by.css('h2')).get(0).getText()).toEqual('Peek-A-Boo');
|
|
|
|
});
|
|
|
|
|
2016-01-23 13:21:09 -05:00
|
|
|
it('should support peek-a-boo', function () {
|
2015-12-20 16:17:16 -05:00
|
|
|
var pabComp = element(by.css('peek-a-boo-parent peek-a-boo'));
|
|
|
|
expect(pabComp.isPresent()).toBe(false, "should not be able to find the 'peek-a-boo' component");
|
|
|
|
var pabButton = element.all(by.css('peek-a-boo-parent button')).get(0);
|
|
|
|
var updateHeroButton = element.all(by.css('peek-a-boo-parent button')).get(1);
|
|
|
|
expect(pabButton.getText()).toContain('Create Peek');
|
|
|
|
pabButton.click().then(function () {
|
|
|
|
expect(pabButton.getText()).toContain('Destroy Peek');
|
|
|
|
expect(pabComp.isDisplayed()).toBe(true, "should be able to see the 'peek-a-boo' component");
|
|
|
|
expect(pabComp.getText()).toContain('Windstorm');
|
|
|
|
expect(pabComp.getText()).not.toContain('Windstorm!');
|
|
|
|
expect(updateHeroButton.isPresent()).toBe(true, "should be able to see the update hero button");
|
|
|
|
return updateHeroButton.click();
|
|
|
|
}).then(function () {
|
|
|
|
expect(pabComp.getText()).toContain('Windstorm!');
|
|
|
|
return pabButton.click();
|
|
|
|
}).then(function () {
|
|
|
|
expect(pabComp.isPresent()).toBe(false, "should no longer be able to find the 'peek-a-boo' component");
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-01-23 13:21:09 -05:00
|
|
|
it('should support OnChanges hook', function () {
|
|
|
|
var onChangesViewEle = element.all(by.css('on-changes div')).get(0);
|
2015-12-20 16:17:16 -05:00
|
|
|
var inputEles = element.all(by.css('on-changes-parent input'));
|
2016-01-23 13:21:09 -05:00
|
|
|
var heroNameInputEle = inputEles.get(1);
|
|
|
|
var powerInputEle = inputEles.get(0);
|
2015-12-20 16:17:16 -05:00
|
|
|
var titleEle = onChangesViewEle.element(by.css('p'));
|
|
|
|
var changeLogEles = onChangesViewEle.all(by.css('div'));
|
2016-04-27 14:28:22 -04:00
|
|
|
|
2016-01-23 13:21:09 -05:00
|
|
|
expect(titleEle.getText()).toContain('Windstorm can sing');
|
|
|
|
expect(changeLogEles.count()).toEqual(2, "should start with 2 messages");
|
2016-01-03 14:32:57 -05:00
|
|
|
// heroNameInputEle.sendKeys('-foo-').then(function () {
|
|
|
|
sendKeys(heroNameInputEle, '-foo-').then(function () {
|
2015-12-20 16:17:16 -05:00
|
|
|
expect(titleEle.getText()).toContain('Windstorm-foo- can sing');
|
2016-01-23 13:21:09 -05:00
|
|
|
expect(changeLogEles.count()).toEqual(2, "should still have 2 messages");
|
2015-12-20 16:17:16 -05:00
|
|
|
// protractor bug with sendKeys means that line below does not work.
|
|
|
|
// return powerInputEle.sendKeys('-bar-');
|
|
|
|
return sendKeys(powerInputEle, '-bar-');
|
|
|
|
}).then(function () {
|
|
|
|
expect(titleEle.getText()).toContain('Windstorm-foo- can sing-bar-');
|
2016-01-23 13:21:09 -05:00
|
|
|
// 7 == 2 previously + length of '-bar-'
|
|
|
|
expect(changeLogEles.count()).toEqual(7, "should have 7 messages now");
|
2015-12-20 16:17:16 -05:00
|
|
|
});
|
|
|
|
});
|
2016-04-27 14:28:22 -04:00
|
|
|
|
2016-01-23 13:21:09 -05:00
|
|
|
it('should support DoCheck hook', function () {
|
|
|
|
var doCheckViewEle = element.all(by.css('do-check div')).get(0);
|
|
|
|
var inputEles = element.all(by.css('do-check-parent input'));
|
|
|
|
var heroNameInputEle = inputEles.get(1);
|
|
|
|
var powerInputEle = inputEles.get(0);
|
|
|
|
var titleEle = doCheckViewEle.element(by.css('p'));
|
|
|
|
var changeLogEles = doCheckViewEle.all(by.css('div'));
|
|
|
|
var logCount;
|
2016-04-27 14:28:22 -04:00
|
|
|
|
2016-01-23 13:21:09 -05:00
|
|
|
expect(titleEle.getText()).toContain('Windstorm can sing');
|
|
|
|
changeLogEles.count().then(function(count) {
|
2016-03-18 19:39:10 -04:00
|
|
|
// Empirically 5 messages to start
|
|
|
|
expect(count).toBeGreaterThan(4, "should start with some messages");
|
2016-01-23 13:21:09 -05:00
|
|
|
logCount = count;
|
|
|
|
// heroNameInputEle.sendKeys('-foo-').then(function () {
|
|
|
|
return sendKeys(heroNameInputEle, '-foo-')
|
|
|
|
}).then(function () {
|
|
|
|
expect(titleEle.getText()).toContain('Windstorm-foo- can sing');
|
|
|
|
return changeLogEles.count()
|
|
|
|
}).then(function (count) {
|
2016-03-18 19:39:10 -04:00
|
|
|
// two more for each keystroke except the 1st
|
|
|
|
expect(count).toEqual(logCount + 9, 'should add 9 more messages')
|
2016-01-23 13:21:09 -05:00
|
|
|
logCount = count;
|
|
|
|
// return powerInputEle.sendKeys('-bar-');
|
|
|
|
return sendKeys(powerInputEle, '-bar-');
|
|
|
|
}).then(function () {
|
|
|
|
expect(titleEle.getText()).toContain('Windstorm-foo- can sing-bar-');
|
|
|
|
// 7 == 2 previously + length of '-bar-'
|
|
|
|
expect(changeLogEles.count()).toEqual(logCount + 15, 'should add 15 more messages');
|
|
|
|
});
|
|
|
|
});
|
2016-04-27 14:28:22 -04:00
|
|
|
|
2016-01-23 13:21:09 -05:00
|
|
|
it('should support AfterView hooks', function () {
|
|
|
|
var parentEle = element(by.tagName('after-view-parent'));
|
|
|
|
var buttonEle = parentEle.element(by.tagName('button')); // Reset
|
2016-04-27 14:28:22 -04:00
|
|
|
var commentEle = parentEle.element(by.className('comment'));
|
2016-01-23 13:21:09 -05:00
|
|
|
var logEles = parentEle.all(by.css('h4 ~ div'));
|
|
|
|
var childViewInputEle = parentEle.element(by.css('my-child input'));
|
2015-12-20 16:17:16 -05:00
|
|
|
var logCount;
|
2016-04-27 14:28:22 -04:00
|
|
|
|
2016-01-23 13:21:09 -05:00
|
|
|
expect(childViewInputEle.getAttribute('value')).toContain('Magneta');
|
|
|
|
expect(commentEle.isPresent()).toBe(false, 'comment should not be in DOM');
|
|
|
|
|
2015-12-20 16:17:16 -05:00
|
|
|
logEles.count().then(function(count) {
|
|
|
|
logCount = count;
|
2016-01-23 13:21:09 -05:00
|
|
|
return sendKeys(childViewInputEle, "-test-");
|
2015-12-20 16:17:16 -05:00
|
|
|
}).then(function() {
|
2016-01-23 13:21:09 -05:00
|
|
|
expect(childViewInputEle.getAttribute('value')).toContain('-test-');
|
2016-04-27 14:28:22 -04:00
|
|
|
expect(commentEle.isPresent()).toBe(true,'should have comment because >10 chars');
|
2016-01-23 13:21:09 -05:00
|
|
|
expect(commentEle.getText()).toContain('long name');
|
2015-12-20 16:17:16 -05:00
|
|
|
return logEles.count();
|
|
|
|
}).then(function(count) {
|
2016-03-18 19:39:10 -04:00
|
|
|
expect(logCount + 10).toEqual(count, "10 additional log messages should have been added");
|
2015-12-20 16:17:16 -05:00
|
|
|
logCount = count;
|
|
|
|
return buttonEle.click();
|
|
|
|
}).then(function() {
|
2016-01-23 13:21:09 -05:00
|
|
|
expect(logEles.count()).toBeLessThan(logCount, "log should shrink after reset");
|
2015-12-20 16:17:16 -05:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-01-23 13:21:09 -05:00
|
|
|
|
|
|
|
it('should support AfterContent hooks', function () {
|
|
|
|
var parentEle = element(by.tagName('after-content-parent'));
|
|
|
|
var buttonEle = parentEle.element(by.tagName('button')); // Reset
|
2016-04-27 14:28:22 -04:00
|
|
|
var commentEle = parentEle.element(by.className('comment'));
|
2016-01-23 13:21:09 -05:00
|
|
|
var logEles = parentEle.all(by.css('h4 ~ div'));
|
|
|
|
var childViewInputEle = parentEle.element(by.css('my-child input'));
|
2015-12-20 16:17:16 -05:00
|
|
|
var logCount;
|
2016-04-27 14:28:22 -04:00
|
|
|
|
2016-01-23 13:21:09 -05:00
|
|
|
expect(childViewInputEle.getAttribute('value')).toContain('Magneta');
|
|
|
|
expect(commentEle.isPresent()).toBe(false, 'comment should not be in DOM');
|
|
|
|
|
2015-12-20 16:17:16 -05:00
|
|
|
logEles.count().then(function(count) {
|
|
|
|
logCount = count;
|
2016-01-23 13:21:09 -05:00
|
|
|
return sendKeys(childViewInputEle, "-test-");
|
2015-12-20 16:17:16 -05:00
|
|
|
}).then(function() {
|
2016-01-23 13:21:09 -05:00
|
|
|
expect(childViewInputEle.getAttribute('value')).toContain('-test-');
|
2016-04-27 14:28:22 -04:00
|
|
|
expect(commentEle.isPresent()).toBe(true,'should have comment because >10 chars');
|
2016-01-23 13:21:09 -05:00
|
|
|
expect(commentEle.getText()).toContain('long name');
|
2015-12-20 16:17:16 -05:00
|
|
|
return logEles.count();
|
|
|
|
}).then(function(count) {
|
2016-03-18 19:39:10 -04:00
|
|
|
expect(logCount + 10).toEqual(count, "10 additional log messages should have been added");
|
2015-12-20 16:17:16 -05:00
|
|
|
logCount = count;
|
|
|
|
return buttonEle.click();
|
|
|
|
}).then(function() {
|
2016-01-23 13:21:09 -05:00
|
|
|
expect(logEles.count()).toBeLessThan(logCount, "log should shrink after reset");
|
2015-12-20 16:17:16 -05:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-01-23 13:21:09 -05:00
|
|
|
it('should support spy\'s OnInit & OnDestroy hooks', function () {
|
2015-12-20 16:17:16 -05:00
|
|
|
var inputEle = element(by.css('spy-parent input'));
|
|
|
|
var addHeroButtonEle = element(by.cssContainingText('spy-parent button','Add Hero'));
|
|
|
|
var resetHeroesButtonEle = element(by.cssContainingText('spy-parent button','Reset Heroes'));
|
2016-04-27 14:28:22 -04:00
|
|
|
var heroEles = element.all(by.css('spy-parent div[mySpy'));
|
2015-12-20 16:17:16 -05:00
|
|
|
var logEles = element.all(by.css('spy-parent h4 ~ div'));
|
|
|
|
expect(heroEles.count()).toBe(2, 'should have two heroes displayed');
|
|
|
|
expect(logEles.count()).toBe(2, 'should have two log entries');
|
|
|
|
sendKeys(inputEle, "-test-").then(function() {
|
|
|
|
return addHeroButtonEle.click();
|
|
|
|
}).then(function() {
|
|
|
|
expect(heroEles.count()).toBe(3, 'should have added one hero');
|
|
|
|
expect(heroEles.get(2).getText()).toContain('-test-');
|
|
|
|
expect(logEles.count()).toBe(3, 'should now have 3 log entries');
|
|
|
|
return resetHeroesButtonEle.click();
|
|
|
|
}).then(function() {
|
|
|
|
expect(heroEles.count()).toBe(0, 'should no longer have any heroes');
|
|
|
|
expect(logEles.count()).toBe(7, 'should now have 7 log entries - 3 orig + 1 reset + 3 removeall');
|
|
|
|
})
|
|
|
|
});
|
|
|
|
|
2016-01-23 13:21:09 -05:00
|
|
|
it('should support "spy counter"', function () {
|
2015-12-20 16:17:16 -05:00
|
|
|
var updateCounterButtonEle = element(by.cssContainingText('counter-parent button','Update'));
|
|
|
|
var resetCounterButtonEle = element(by.cssContainingText('counter-parent button','Reset'));
|
|
|
|
var textEle = element(by.css('counter-parent my-counter > div'));
|
|
|
|
var logEles = element.all(by.css('counter-parent h4 ~ div'));
|
|
|
|
expect(textEle.getText()).toContain('Counter = 0');
|
|
|
|
expect(logEles.count()).toBe(2, 'should start with two log entries');
|
|
|
|
updateCounterButtonEle.click().then(function() {
|
|
|
|
expect(textEle.getText()).toContain('Counter = 1');
|
|
|
|
expect(logEles.count()).toBe(3, 'should now have 3 log entries');
|
|
|
|
return resetCounterButtonEle.click();
|
|
|
|
}).then(function() {
|
|
|
|
expect(textEle.getText()).toContain('Counter = 0');
|
|
|
|
expect(logEles.count()).toBe(7, 'should now have 7 log entries - 3 prev + 1 reset + 2 destroy + 1 init');
|
|
|
|
})
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
});
|