Resolved issues

This commit is contained in:
Sourav Chanduka
2021-07-20 15:56:28 +05:30
parent c45ad60078
commit 53a752919b
4 changed files with 39 additions and 22 deletions

View File

@@ -1,10 +1,19 @@
var httpclient = require("@actions/http-client")
var configvar = require("./../src/internal/config-variables")
var httpclient = require('@actions/http-client')
var configvar = require('./../src/internal/config-variables')
var main = require('./../src/main')
describe('oidc-client-tests', () => {
it('Get Http Client', async () => {
//const http = new httpclient('actions/oidc-client')
expect(httpclient).toBeDefined()
const http = new httpclient.HttpClient('actions/oidc-client')
expect(http).toBeDefined()
})
it('HTTP get request to get token endpoint', async () => {
const http = new httpclient.HttpClient('actions/oidc-client')
const res = await http.get(
'https://ghactionsoidc.azurewebsites.net/.well-known/openid-configuration'
)
expect(res.message.statusCode).toBe(200)
})
it('Get token endpoint', async () => {
@@ -12,6 +21,10 @@ describe('oidc-client-tests', () => {
expect(url).toBeDefined()
})
it('Fetch Id token', async () => {
var id_token = main.getIDToken('helloworld')
expect(id_token).toBeDefined()
})
})
/*test('HTTP get request to get token endpoint', async () => {