forked from Azure/azure-functions-pack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazureProvider.spec.ts
89 lines (75 loc) · 2.41 KB
/
azureProvider.spec.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
//TODO: need understand the typescript for using import.
const AzureProvider = require('../src/provider').AzureProvider;
// console.log(AzureProvider);
describe('The azure client', () => {
it('should not create the azure provider', async () => {
try {
const azure = new AzureProvider();
fail('must provide options');
} catch (error) {
// console.log(error);
//ignore error;
}
})
it('should login with azure provider', async () => {
try {
const azure = new AzureProvider({});
// console.log(azure);
const principalCredentials = await azure.login();
expect(principalCredentials).not.toBeUndefined();
} catch (error) {
fail(error);
}
})
it('should not create the resource group', async () => {
try {
const azure = new AzureProvider({});
await azure.login();
const result = await azure.CreateResourceGroup();
fail('Should not be here');
} catch (error) {
//ignore error.
}
})
it('should create the resource group', async () => {
try {
jest.setTimeout(100000);
const azure = new AzureProvider({ functionAppName: 'mytest123' });
await azure.login();
const result = await azure.createResourceGroup();
expect(result.name).toBe('mytest123-rg')
await azure.deleteResourceGroup();
} catch (error) {
fail(error);
}
});
it('should create the Function APP', async () => {
try {
jest.setTimeout(900000);
const azure = new AzureProvider({ functionAppName: 'mytest456' });
await azure.login();
const result = await azure.createResourceGroup();
expect(result.name).toBe('mytest456-rg')
const app = await azure.createFunctionApp();
expect(app.properties.parameters.functionAppName.value).toBe('mytest456');
await azure.deleteResourceGroup();
} catch (error) {
fail(error);
}
});
it('should find the Function APP', async () => {
try {
jest.setTimeout(900000);
const azure = new AzureProvider({ functionAppName: 'mytest789' });
await azure.login();
let result = await azure.createResourceGroup();
expect(result.name).toBe('mytest789-rg')
const app = await azure.createFunctionApp();
result = await azure.isExistingFunctionApp();
expect(result).toBeTruthy();
await azure.deleteResourceGroup();
} catch (error) {
fail(error);
}
});
})