chore(server): cleanup controllers (#2065)

This commit is contained in:
Jason Rasmussen
2023-03-24 00:53:56 -04:00
committed by GitHub
parent 6745826f35
commit 54f98053a8
11 changed files with 93 additions and 84 deletions

View File

@@ -63,6 +63,16 @@ describe('OAuthService', () => {
expect(sut).toBeDefined();
});
describe('getMobileRedirect', () => {
it('should pass along the query params', () => {
expect(sut.getMobileRedirect('http://immich.app?code=123&state=456')).toEqual('app.immich:/?code=123&state=456');
});
it('should work if called without query params', () => {
expect(sut.getMobileRedirect('http://immich.app')).toEqual('app.immich:/?');
});
});
describe('generateConfig', () => {
it('should work when oauth is not configured', async () => {
await expect(sut.generateConfig({ redirectUri: 'http://callback' })).resolves.toEqual({