-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'next' into snyk-upgrade-d6ff5dd9aa34013e8d34f694960a55b7
- Loading branch information
Showing
30 changed files
with
1,525 additions
and
58 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
threshold: medium | ||
fileignoreconfig: | ||
- filename: package-lock.json | ||
checksum: 2a2327aabd3f6eacf41a8e8bb3dd5afdab892683cfd15aac308f43c14108b824 | ||
checksum: 9d0340f9359927d477fe8ab4650642c068c592be63fb817651d866849e0dbbc2 | ||
version: "" |
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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,146 @@ | ||
import { expect } from 'chai' | ||
import { describe, it, setup } from 'mocha' | ||
import { jsonReader } from '../utility/fileOperations/readwrite.js' | ||
import { createManagementToken, createManagementToken2 } from '../mock/managementToken.js' | ||
import { contentstackClient } from '../utility/ContentstackClient.js' | ||
|
||
let client = {} | ||
|
||
let tokenUidProd = '' | ||
let tokenUidDev = '' | ||
describe('Management Token api Test', () => { | ||
setup(() => { | ||
const user = jsonReader('loggedinuser.json') | ||
client = contentstackClient(user.authtoken) | ||
}) | ||
|
||
it('should add a Management Token', done => { | ||
makeManagementToken() | ||
.create(createManagementToken) | ||
.then((token) => { | ||
tokenUidDev = token.uid | ||
expect(token.name).to.be.equal(createManagementToken.token.name) | ||
expect(token.description).to.be.equal(createManagementToken.token.description) | ||
expect(token.scope[0].module).to.be.equal(createManagementToken.token.scope[0].module) | ||
expect(token.uid).to.be.not.equal(null) | ||
done() | ||
}) | ||
.catch(done) | ||
}) | ||
|
||
it('should add a Management Token for production', done => { | ||
makeManagementToken() | ||
.create(createManagementToken2) | ||
.then((token) => { | ||
tokenUidProd = token.uid | ||
expect(token.name).to.be.equal(createManagementToken2.token.name) | ||
expect(token.description).to.be.equal(createManagementToken2.token.description) | ||
expect(token.scope[0].module).to.be.equal(createManagementToken2.token.scope[0].module) | ||
expect(token.uid).to.be.not.equal(null) | ||
done() | ||
}) | ||
.catch(done) | ||
}) | ||
|
||
it('should get a Management Token from uid', done => { | ||
makeManagementToken(tokenUidProd) | ||
.fetch() | ||
.then((token) => { | ||
expect(token.name).to.be.equal(createManagementToken2.token.name) | ||
expect(token.description).to.be.equal(createManagementToken2.token.description) | ||
expect(token.scope[0].module).to.be.equal(createManagementToken2.token.scope[0].module) | ||
expect(token.uid).to.be.not.equal(null) | ||
done() | ||
}) | ||
.catch(done) | ||
}) | ||
|
||
it('should query to get all Management Token', done => { | ||
makeManagementToken() | ||
.query() | ||
.find() | ||
.then((tokens) => { | ||
tokens.items.forEach((token) => { | ||
expect(token.name).to.be.not.equal(null) | ||
expect(token.description).to.be.not.equal(null) | ||
expect(token.scope[0].module).to.be.not.equal(null) | ||
expect(token.uid).to.be.not.equal(null) | ||
}) | ||
done() | ||
}) | ||
.catch(done) | ||
}) | ||
|
||
it('should query to get a Management Token from name', done => { | ||
makeManagementToken() | ||
.query({ query: { name: createManagementToken.token.name } }) | ||
.find() | ||
.then((tokens) => { | ||
tokens.items.forEach((token) => { | ||
expect(token.name).to.be.equal(createManagementToken.token.name) | ||
expect(token.description).to.be.equal(createManagementToken.token.description) | ||
expect(token.scope[0].module).to.be.equal(createManagementToken.token.scope[0].module) | ||
expect(token.uid).to.be.not.equal(null) | ||
}) | ||
done() | ||
}) | ||
.catch(done) | ||
}) | ||
|
||
it('should fetch and update a Management Token from uid', done => { | ||
makeManagementToken(tokenUidProd) | ||
.fetch() | ||
.then((token) => { | ||
token.name = 'Update Production Name' | ||
token.description = 'Update Production description' | ||
token.scope = createManagementToken2.token.scope | ||
return token.update() | ||
}) | ||
.then((token) => { | ||
expect(token.name).to.be.equal('Update Production Name') | ||
expect(token.description).to.be.equal('Update Production description') | ||
expect(token.scope[0].module).to.be.equal(createManagementToken2.token.scope[0].module) | ||
expect(token.uid).to.be.not.equal(null) | ||
done() | ||
}) | ||
.catch(done) | ||
}) | ||
|
||
it('should update a Management Token from uid', done => { | ||
const token = makeManagementToken(tokenUidProd) | ||
Object.assign(token, createManagementToken2.token) | ||
token.update() | ||
.then((token) => { | ||
expect(token.name).to.be.equal(createManagementToken2.token.name) | ||
expect(token.description).to.be.equal(createManagementToken2.token.description) | ||
expect(token.scope[0].module).to.be.equal(createManagementToken2.token.scope[0].module) | ||
expect(token.uid).to.be.not.equal(null) | ||
done() | ||
}) | ||
.catch(done) | ||
}) | ||
|
||
it('should delete a Management Token from uid', done => { | ||
makeManagementToken(tokenUidProd) | ||
.delete() | ||
.then((data) => { | ||
expect(data.notice).to.be.equal('Management Token deleted successfully.') | ||
done() | ||
}) | ||
.catch(done) | ||
}) | ||
|
||
it('should delete a Management Token from uid 2', done => { | ||
makeManagementToken(tokenUidDev) | ||
.delete() | ||
.then((data) => { | ||
expect(data.notice).to.be.equal('Management Token deleted successfully.') | ||
done() | ||
}) | ||
.catch(done) | ||
}) | ||
}) | ||
|
||
function makeManagementToken (uid = null) { | ||
return client.stack({ api_key: process.env.API_KEY }).managementToken(uid) | ||
} |
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
Oops, something went wrong.