mirror of
https://github.com/brendan-ch/project-inter-server.git
synced 2026-04-17 07:50:31 +00:00
update tests and implementation ofr getAPNsFullUrlToUse
This commit is contained in:
@@ -185,21 +185,22 @@ describe("NotificationService", () => {
|
||||
process.env.NODE_ENV = 'production';
|
||||
const deviceId = 'testDeviceId';
|
||||
const result = NotificationService.getAPNsFullUrlToUse(deviceId);
|
||||
expect(result).toBe(`https://api.push.apple.com/3/device/${deviceId}`);
|
||||
|
||||
const { fullUrl, host, path } = result;
|
||||
expect(fullUrl).toBe(`https://api.push.apple.com/3/device/${deviceId}`);
|
||||
expect(host).toBe("https://api.push.apple.com");
|
||||
expect(path).toBe(`/3/device/${deviceId}`);
|
||||
});
|
||||
|
||||
it('should return the sandbox URL when NODE_ENV is not set to "production"', () => {
|
||||
process.env.NODE_ENV = 'development';
|
||||
const deviceId = 'testDeviceId';
|
||||
const result = NotificationService.getAPNsFullUrlToUse(deviceId);
|
||||
expect(result).toBe(`https://api.sandbox.push.apple.com/3/device/${deviceId}`);
|
||||
});
|
||||
|
||||
it('should append the correct device ID to the URL', () => {
|
||||
process.env.NODE_ENV = 'production';
|
||||
const deviceId = 'device123';
|
||||
const result = NotificationService.getAPNsFullUrlToUse(deviceId);
|
||||
expect(result).toBe(`https://api.push.apple.com/3/device/${deviceId}`);
|
||||
const { fullUrl, host, path } = result;
|
||||
expect(fullUrl).toBe(`https://api.development.push.apple.com/3/device/${deviceId}`);
|
||||
expect(host).toBe("https://api.development.push.apple.com");
|
||||
expect(path).toBe(`/3/device/${deviceId}`);
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user