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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<!DOCTYPE HTML>
<html>
<!--
Tests for Firefox Accounts signin with invalid email case
https://bugzilla.mozilla.org/show_bug.cgi?id=963835
-->
<head>
<title>Test for Firefox Accounts (Bug 963835)</title>
<script src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css" />
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=963835">Mozilla Bug 963835</a>
<p id="display"></p>
<div id="content" style="display: none">
Test for correction of invalid email case in Fx Accounts signIn
</div>
<pre id="test">
<script class="testbody" type="text/javascript">
SimpleTest.waitForExplicitFinish();
const {FxAccounts} = ChromeUtils.import("resource://gre/modules/FxAccounts.jsm");
const {FxAccountsClient} = ChromeUtils.import("resource://gre/modules/FxAccountsClient.jsm");
ChromeUtils.import("resource://services-common/hawkclient.js");
const TEST_SERVER =
"http://mochi.test:8888/chrome/services/fxaccounts/tests/mochitest/file_invalidEmailCase.sjs?path=";
let MockStorage = function() {
this.data = null;
};
MockStorage.prototype = Object.freeze({
set(contents) {
this.data = contents;
return Promise.resolve(null);
},
get() {
return Promise.resolve(this.data);
},
getOAuthTokens() {
return Promise.resolve(null);
},
setOAuthTokens(contents) {
return Promise.resolve();
},
});
function MockFxAccounts() {
return new FxAccounts({
_now_is: new Date(),
now() {
return this._now_is;
},
signedInUserStorage: new MockStorage(),
fxAccountsClient: new FxAccountsClient(TEST_SERVER),
});
}
let wrongEmail = "greta.garbo@gmail.com";
let rightEmail = "Greta.Garbo@gmail.COM";
let password = "123456";
function runTest() {
is(Services.prefs.getCharPref("identity.fxaccounts.auth.uri"), TEST_SERVER,
"Pref for auth.uri should be set to test server");
let fxa = new MockFxAccounts();
let client = fxa._internal.fxAccountsClient;
is(true, !!fxa, "Couldn't mock fxa");
is(true, !!client, "Couldn't mock fxa client");
is(client.host, TEST_SERVER, "Should be using the test auth server uri");
// First try to sign in using the email with the wrong capitalization. The
// FxAccountsClient will receive a 400 from the server with the corrected email.
// It will automatically try to sign in again. We expect this to succeed.
client.signIn(wrongEmail, password).then(
user => {
// Now store the signed-in user state. This will include the correct
// email capitalization.
fxa._internal.setSignedInUser(user).then(
() => {
// Confirm that the correct email got stored.
fxa.getSignedInUser().then(
data => {
is(data.email, rightEmail);
SimpleTest.finish();
},
getUserError => {
ok(false, JSON.stringify(getUserError));
}
);
},
setSignedInUserError => {
ok(false, JSON.stringify(setSignedInUserError));
}
);
},
signInError => {
ok(false, JSON.stringify(signInError));
}
);
}
SpecialPowers.pushPrefEnv({"set": [
["identity.fxaccounts.enabled", true], // fx accounts
["identity.fxaccounts.auth.uri", TEST_SERVER], // our sjs server
["browser.dom.window.dump.enabled", true],
["devtools.console.stdout.chrome", true],
]},
function() { runTest(); }
);
</script>
</pre>
</body>
</html>
|