forked from kubernetes-client/javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathintegration_test.ts
50 lines (43 loc) · 1.55 KB
/
integration_test.ts
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
import { expect, use } from 'chai';
import chaiAsPromised = require('chai-as-promised');
import nock = require('nock');
import { CoreV1Api } from './api';
import { KubeConfig } from './config';
import { Cluster, User } from './config_types';
use(chaiAsPromised);
describe('FullRequest', () => {
describe('getPods', () => {
it('should get pods successfully', () => {
const kc = new KubeConfig();
const cluster = {
name: 'foo',
server: 'https://nowhere.foo',
} as Cluster;
const username = 'foo';
const password = 'some-password';
const user = {
name: 'my-user',
username,
password,
} as User;
kc.loadFromClusterAndUser(cluster, user);
const k8sApi = kc.makeApiClient(CoreV1Api);
const result = {
kind: 'PodList',
apiVersion: 'v1',
items: [],
metadata: undefined,
};
const auth = Buffer.from(`${username}:${password}`).toString('base64');
nock('https://nowhere.foo:443', {
reqheaders: {
authorization: `Basic ${auth}`,
},
})
.get('/api/v1/namespaces/default/pods')
.reply(200, result);
const promise = k8sApi.listNamespacedPod('default');
return expect(promise).to.eventually.have.property('body').that.deep.equals(result);
});
});
});