-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathsignup.spec(jasmine).js
79 lines (63 loc) · 3.26 KB
/
signup.spec(jasmine).js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
'use strict';
var config = browser.params;<% if (filters.mongooseModels) { %>
var UserModel = require(config.serverConfig.root + '/server/api/user/user.model');<% } %><% if (filters.sequelizeModels) { %>
var UserModel = require(config.serverConfig.root + '/server/sqldb').User;<% } %>
describe('Signup View', function() {
var page;
var loadPage = function() {
browser.manage().deleteAllCookies();
browser.get(config.baseUrl + '/signup');
page = require('./signup.po');
};
var testUser = {
name: 'Test',
email: '[email protected]',
password: 'test',
confirmPassword: 'test'
};
beforeEach(function(done) {
loadPage();
browser.wait(function() {
return browser.executeScript('return !!window.angular');
}, 5000).then(done);
});
it('should include signup form with correct inputs and submit button', function() {
expect(page.form.name.getAttribute('type')).toBe('text');
expect(page.form.name.getAttribute('name')).toBe('name');
expect(page.form.email.getAttribute('type')).toBe('email');
expect(page.form.email.getAttribute('name')).toBe('email');
expect(page.form.password.getAttribute('type')).toBe('password');
expect(page.form.password.getAttribute('name')).toBe('password');
expect(page.form.confirmPassword.getAttribute('type')).toBe('password');
expect(page.form.confirmPassword.getAttribute('name')).toBe('confirmPassword');
expect(page.form.submit.getAttribute('type')).toBe('submit');
expect(page.form.submit.getText()).toBe('Sign up');
});<% if (filters.oauth) { %>
it('should include oauth buttons with correct classes applied', function() {<% if (filters.facebookAuth) { %>
expect(page.form.oauthButtons.facebook.getText()).toBe('Connect with Facebook');
expect(page.form.oauthButtons.facebook.getAttribute('class')).toMatch('btn-block');<% } if (filters.googleAuth) { %>
expect(page.form.oauthButtons.google.getText()).toBe('Connect with Google+');
expect(page.form.oauthButtons.google.getAttribute('class')).toMatch('btn-block');<% } if (filters.twitterAuth) { %>
expect(page.form.oauthButtons.twitter.getText()).toBe('Connect with Twitter');
expect(page.form.oauthButtons.twitter.getAttribute('class')).toMatch('btn-block');<% } %>
});<% } %>
describe('with local auth', function() {
beforeAll(function(done) {
<% if (filters.mongooseModels) { %>UserModel.remove().then(done);<% }
if (filters.sequelizeModels) { %>UserModel.destroy({ where: {} }).then(done);<% } %>
});
it('should signup a new user, log them in, and redirecting to "/"', function() {
page.signup(testUser);
var navbar = require('../../components/navbar/navbar.po');
expect(browser.getCurrentUrl()).toBe(config.baseUrl + '/');
expect(navbar.navbarAccountGreeting.getText()).toBe('Hello ' + testUser.name);
});
it('should indicate signup failures', function() {
page.signup(testUser);
expect(browser.getCurrentUrl()).toBe(config.baseUrl + '/signup');
expect(page.form.email.getAttribute('class')).toContain('ng-invalid-mongoose');
var helpBlock = page.form.element(by.css('.form-group.has-error .help-block.ng-binding'));
expect(helpBlock.getText()).toBe('The specified email address is already in use.');
});
});
});