-
Notifications
You must be signed in to change notification settings - Fork 463
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: Problems panel failing for versions before 7.0.0 (#1840)
* Fix: Problems panel failing for versions before 7.0.0 * Add tests * Use spy instead of new argument
- Loading branch information
1 parent
aecdb4b
commit 803dbf5
Showing
2 changed files
with
33 additions
and
5 deletions.
There are no files selected for viewing
27 changes: 27 additions & 0 deletions
27
src/datasource/zabbix/connectors/zabbix_api/zabbixAPIConnector.test.ts
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,27 @@ | ||
import { ZabbixAPIConnector } from './zabbixAPIConnector'; | ||
|
||
describe('Zabbix API connector', () => { | ||
describe('getProxies function', () => { | ||
beforeAll(() => { | ||
jest.spyOn(ZabbixAPIConnector.prototype, 'initVersion').mockResolvedValue(''); | ||
}); | ||
|
||
it('should send the name parameter to the request when version is 7 or greater for the getProxies', async () => { | ||
const zabbixAPIConnector = new ZabbixAPIConnector(true, true, 123); | ||
zabbixAPIConnector.version = '7.0.0'; | ||
zabbixAPIConnector.request = jest.fn(); | ||
|
||
await zabbixAPIConnector.getProxies(); | ||
expect(zabbixAPIConnector.request).toHaveBeenCalledWith('proxy.get', { output: ['proxyid', 'name'] }); | ||
}); | ||
|
||
it('should send the host parameter when version is less than 7.0.0', () => { | ||
const zabbixAPIConnector = new ZabbixAPIConnector(true, true, 123); | ||
zabbixAPIConnector.version = '6.0.0'; | ||
zabbixAPIConnector.request = jest.fn(); | ||
|
||
zabbixAPIConnector.getProxies(); | ||
expect(zabbixAPIConnector.request).toHaveBeenCalledWith('proxy.get', { output: ['proxyid', 'host'] }); | ||
}); | ||
}); | ||
}); |
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