-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🔧 fix: socialLogins default value (#1730)
* fix: socialLogins default value * ci: add test for `AppService`
- Loading branch information
1 parent
a2c35e8
commit f30d6bd
Showing
2 changed files
with
52 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
const { FileSources } = require('librechat-data-provider'); | ||
|
||
const AppService = require('./AppService'); | ||
|
||
jest.mock('./Config/loadCustomConfig', () => { | ||
return jest.fn(() => | ||
Promise.resolve({ | ||
registration: { socialLogins: ['testLogin'] }, | ||
fileStrategy: 'testStrategy', | ||
}), | ||
); | ||
}); | ||
jest.mock('./Files/Firebase/initialize', () => ({ | ||
initializeFirebase: jest.fn(), | ||
})); | ||
|
||
describe('AppService', () => { | ||
let app; | ||
|
||
beforeEach(() => { | ||
app = { locals: {} }; | ||
process.env.CDN_PROVIDER = undefined; | ||
}); | ||
|
||
it('should correctly assign process.env and app.locals based on custom config', async () => { | ||
await AppService(app); | ||
|
||
expect(process.env.CDN_PROVIDER).toEqual('testStrategy'); | ||
|
||
expect(app.locals).toEqual({ | ||
socialLogins: ['testLogin'], | ||
fileStrategy: 'testStrategy', | ||
paths: expect.anything(), | ||
}); | ||
}); | ||
|
||
it('should initialize Firebase when fileStrategy is firebase', async () => { | ||
require('./Config/loadCustomConfig').mockImplementationOnce(() => | ||
Promise.resolve({ | ||
fileStrategy: FileSources.firebase, | ||
}), | ||
); | ||
|
||
await AppService(app); | ||
|
||
const { initializeFirebase } = require('./Files/Firebase/initialize'); | ||
expect(initializeFirebase).toHaveBeenCalled(); | ||
|
||
expect(process.env.CDN_PROVIDER).toEqual(FileSources.firebase); | ||
}); | ||
}); |