forked from parse-community/Parse-SDK-JS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathParseInstallation-test.js
231 lines (217 loc) · 8.43 KB
/
ParseInstallation-test.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
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
jest.dontMock('../CoreManager');
jest.dontMock('../decode');
jest.dontMock('../LocalDatastore');
jest.dontMock('../ObjectStateMutations');
jest.dontMock('../ParseError');
jest.dontMock('../ParseObject');
jest.dontMock('../ParseOp');
jest.dontMock('../ParseInstallation');
jest.dontMock('../promiseUtils');
jest.dontMock('../RESTController');
jest.dontMock('../TaskQueue');
jest.dontMock('../SingleInstanceStateController');
jest.dontMock('../UniqueInstanceStateController');
const ParseError = require('../ParseError').default;
const LocalDatastore = require('../LocalDatastore').default;
const ParseInstallation = require('../ParseInstallation').default;
const CoreManager = require('../CoreManager').default;
describe('ParseInstallation', () => {
it('can create ParseInstallation', () => {
let installation = new ParseInstallation();
expect(installation.className).toBe('_Installation');
installation = new ParseInstallation({});
expect(installation.className).toBe('_Installation');
installation = new ParseInstallation({ deviceToken: 'token' });
expect(installation.get('deviceToken')).toBe('token');
expect(() => {
new ParseInstallation({ 'invalid#name': 'foo' });
}).toThrow("Can't create an invalid Installation");
});
it('can get device types', () => {
expect(ParseInstallation.DEVICE_TYPES.WEB).toEqual('web');
expect(ParseInstallation.DEVICE_TYPES.IOS).toEqual('ios');
expect(ParseInstallation.DEVICE_TYPES.MACOS).toEqual('macos');
expect(ParseInstallation.DEVICE_TYPES.TVOS).toEqual('tvos');
expect(ParseInstallation.DEVICE_TYPES.FCM).toEqual('fcm');
expect(ParseInstallation.DEVICE_TYPES.ANDROID).toEqual('android');
});
it('can retrieve getters', () => {
const data = {
deviceType: 'web',
installationId: '1234',
deviceToken: '1234',
badge: 1,
appIdentifier: 'com.parse.server',
appName: 'Parse JS SDK',
appVersion: '1.0.0',
parseVersion: '1.0.0',
localeIdentifier: 'en-US',
timeZone: 'GMT',
channels: ['test'],
GCMSenderId: '1234',
pushType: 'test',
};
const installation = new ParseInstallation(data);
Object.keys(data).forEach(key => {
expect(installation[key]).toEqual(data[key]);
});
});
it('can save to disk', async () => {
const InstallationController = {
async updateInstallationOnDisk() {},
async currentInstallationId() {},
async currentInstallation() {},
};
CoreManager.setInstallationController(InstallationController);
CoreManager.setRESTController({
request() {
return Promise.resolve({}, 200);
},
ajax() {},
});
CoreManager.setLocalDatastore(LocalDatastore);
jest.spyOn(InstallationController, 'updateInstallationOnDisk').mockImplementationOnce(() => {});
const installation = new ParseInstallation();
installation.set('deviceToken', '1234');
await installation.save();
expect(InstallationController.updateInstallationOnDisk).toHaveBeenCalledTimes(1);
});
it('can save if object not found', async () => {
const InstallationController = {
async updateInstallationOnDisk() {},
async currentInstallationId() {},
async currentInstallation() {},
};
let once = true; // save will be called twice first time will reject
CoreManager.setInstallationController(InstallationController);
CoreManager.setRESTController({
request() {
if (!once) {
return Promise.resolve({}, 200);
}
once = false;
const parseError = new ParseError(ParseError.OBJECT_NOT_FOUND, 'Object not found.');
return Promise.reject(parseError);
},
ajax() {},
});
CoreManager.setLocalDatastore(LocalDatastore);
jest.spyOn(InstallationController, 'updateInstallationOnDisk').mockImplementationOnce(() => {});
const installation = new ParseInstallation();
installation.set('deviceToken', '1234');
jest.spyOn(installation, '_markAllFieldsDirty');
await installation.save();
expect(installation._markAllFieldsDirty).toHaveBeenCalledTimes(1);
expect(InstallationController.updateInstallationOnDisk).toHaveBeenCalledTimes(1);
});
it('can save and handle errors', async () => {
const InstallationController = {
async updateInstallationOnDisk() {},
async currentInstallationId() {},
async currentInstallation() {},
};
CoreManager.setInstallationController(InstallationController);
CoreManager.setRESTController({
request() {
const parseError = new ParseError(
ParseError.INTERNAL_SERVER_ERROR,
'Cannot save installation on client.'
);
return Promise.reject(parseError);
},
ajax() {},
});
CoreManager.setLocalDatastore(LocalDatastore);
jest.spyOn(InstallationController, 'updateInstallationOnDisk').mockImplementationOnce(() => {});
const installation = new ParseInstallation();
installation.set('deviceToken', '1234');
try {
await installation.save();
} catch (e) {
expect(e.message).toEqual('Cannot save installation on client.');
}
expect(InstallationController.updateInstallationOnDisk).toHaveBeenCalledTimes(0);
});
it('can get current installation', async () => {
const InstallationController = {
async updateInstallationOnDisk() {},
async currentInstallationId() {},
async currentInstallation() {},
};
CoreManager.setInstallationController(InstallationController);
jest.spyOn(InstallationController, 'currentInstallation').mockImplementationOnce(() => {
const installation = new ParseInstallation({ deviceType: 'web', installationId: '1234' });
return installation;
});
const installation = await ParseInstallation.currentInstallation();
expect(InstallationController.currentInstallation).toHaveBeenCalledTimes(1);
expect(installation.deviceType).toEqual('web');
expect(installation.installationId).toEqual('1234');
});
it('can fetch and save to disk', async () => {
const InstallationController = {
async updateInstallationOnDisk() {},
async currentInstallationId() {},
async currentInstallation() {},
};
CoreManager.setInstallationController(InstallationController);
CoreManager.setRESTController({
request() {
return Promise.resolve({}, 200);
},
ajax() {},
});
CoreManager.setLocalDatastore(LocalDatastore);
jest.spyOn(InstallationController, 'updateInstallationOnDisk').mockImplementationOnce(() => {});
const installation = new ParseInstallation();
installation.id = 'abc';
await installation.fetch();
expect(InstallationController.updateInstallationOnDisk).toHaveBeenCalledTimes(1);
});
it('can fetch if object not found', async () => {
const InstallationController = {
async updateInstallationOnDisk() {},
async currentInstallationId() {},
async currentInstallation() {},
};
let once = true;
CoreManager.setInstallationController(InstallationController);
CoreManager.setRESTController({
request() {
if (!once) {
// save() results
return Promise.resolve({}, 200);
}
once = false;
// fetch() results
const parseError = new ParseError(ParseError.OBJECT_NOT_FOUND, 'Object not found.');
return Promise.reject(parseError);
},
ajax() {},
});
CoreManager.setLocalDatastore(LocalDatastore);
jest.spyOn(InstallationController, 'updateInstallationOnDisk').mockImplementationOnce(() => {});
const installation = new ParseInstallation();
installation.id = '1234';
jest.spyOn(installation, '_markAllFieldsDirty');
await installation.fetch();
expect(installation._markAllFieldsDirty).toHaveBeenCalledTimes(1);
expect(InstallationController.updateInstallationOnDisk).toHaveBeenCalledTimes(1);
});
it('can fetch and handle errors', async () => {
const InstallationController = {
async updateInstallationOnDisk() {},
async currentInstallationId() {},
async currentInstallation() {},
};
CoreManager.setInstallationController(InstallationController);
jest.spyOn(InstallationController, 'updateInstallationOnDisk').mockImplementationOnce(() => {});
const installation = new ParseInstallation();
try {
await installation.fetch();
} catch (e) {
expect(e.message).toEqual('Object does not have an ID');
}
expect(InstallationController.updateInstallationOnDisk).toHaveBeenCalledTimes(0);
});
});