-
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 pull request #113 from contentstack/test/cs-43465-environment-d…
…elete-test sanity test for locale and environment delete
- Loading branch information
Showing
7 changed files
with
237 additions
and
12 deletions.
There are no files selected for viewing
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
Empty file.
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,68 @@ | ||
import { expect } from 'chai' | ||
import { describe, it, setup } from 'mocha' | ||
import { jsonReader } from '../utility/fileOperations/readwrite' | ||
import { environmentCreate, environmentProdCreate } from '../mock/environment.js' | ||
import { contentstackClient } from '../utility/ContentstackClient.js' | ||
|
||
let client = {} | ||
|
||
describe('Delete Environment api Test', () => { | ||
setup(() => { | ||
const user = jsonReader('loggedinuser.json') | ||
client = contentstackClient(user.authtoken) | ||
}) | ||
it('should delete an environment', done => { | ||
makeEnvironment(environmentCreate.environment.name) | ||
.delete() | ||
.then((data) => { | ||
expect(data.notice).to.be.equal('Environment deleted successfully.') | ||
done() | ||
}) | ||
.catch(done) | ||
}) | ||
|
||
it('should delete the prod environment', done => { | ||
makeEnvironment(environmentProdCreate.environment.name) | ||
.delete() | ||
.then((data) => { | ||
expect(data.notice).to.be.equal('Environment deleted successfully.') | ||
done() | ||
}) | ||
.catch(done) | ||
}) | ||
}) | ||
|
||
describe('Delete Locale api Test', () => { | ||
setup(() => { | ||
const user = jsonReader('loggedinuser.json') | ||
client = contentstackClient(user.authtoken) | ||
}) | ||
|
||
it('should delete language: Hindi - India', done => { | ||
makeLocale('hi-in') | ||
.delete() | ||
.then((data) => { | ||
expect(data.notice).to.be.equal('Language removed successfully.') | ||
done() | ||
}) | ||
.catch(done) | ||
}) | ||
|
||
it('should delete language: English - Austria', done => { | ||
makeLocale('en-at') | ||
.delete() | ||
.then((data) => { | ||
expect(data.notice).to.be.equal('Language removed successfully.') | ||
done() | ||
}) | ||
.catch(done) | ||
}) | ||
}) | ||
|
||
function makeEnvironment (uid = null) { | ||
return client.stack({ api_key: process.env.API_KEY }).environment(uid) | ||
} | ||
|
||
function makeLocale (uid = null) { | ||
return client.stack({ api_key: process.env.API_KEY }).locale(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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,127 @@ | ||
import { expect } from 'chai' | ||
import { describe, it, setup } from 'mocha' | ||
import { jsonReader } from '../utility/fileOperations/readwrite' | ||
import { contentstackClient } from '../utility/ContentstackClient.js' | ||
|
||
let client = {} | ||
|
||
describe('Locale api Test', () => { | ||
setup(() => { | ||
const user = jsonReader('loggedinuser.json') | ||
client = contentstackClient(user.authtoken) | ||
}) | ||
|
||
it('should add a language English - Austria', done => { | ||
makeLocale() | ||
.create({ locale: { code: 'en-at' } }) | ||
.then((locale) => { | ||
expect(locale.code).to.be.equal('en-at') | ||
expect(locale.name).to.be.equal('English - Austria') | ||
expect(locale.fallback_locale).to.be.equal('en-us') | ||
expect(locale.uid).to.be.not.equal(null) | ||
done() | ||
}) | ||
.catch(done) | ||
}) | ||
|
||
it('should add a language Hindi - India', done => { | ||
makeLocale() | ||
.create({ locale: { code: 'hi-in' } }) | ||
.then((locale) => { | ||
expect(locale.code).to.be.equal('hi-in') | ||
expect(locale.name).to.be.equal('Hindi - India') | ||
expect(locale.fallback_locale).to.be.equal('en-us') | ||
expect(locale.uid).to.be.not.equal(null) | ||
done() | ||
}) | ||
.catch(done) | ||
}) | ||
|
||
it('should add a language Marathi - India with Fallback en-at', done => { | ||
makeLocale() | ||
.create({ locale: { code: 'mr-in', fallback_locale: 'en-at' } }) | ||
.then((locale) => { | ||
expect(locale.code).to.be.equal('mr-in') | ||
expect(locale.name).to.be.equal('Marathi - India') | ||
expect(locale.fallback_locale).to.be.equal('en-at') | ||
expect(locale.uid).to.be.not.equal(null) | ||
done() | ||
}) | ||
.catch(done) | ||
}) | ||
|
||
it('should get a all languages', done => { | ||
makeLocale() | ||
.query() | ||
.find() | ||
.then((locales) => { | ||
locales.items.forEach((locale) => { | ||
expect(locale.code).to.be.not.equal(null) | ||
expect(locale.name).to.be.not.equal(null) | ||
expect(locale.uid).to.be.not.equal(null) | ||
}) | ||
done() | ||
}) | ||
.catch(done) | ||
}) | ||
|
||
it('should query a language Hindi - India', done => { | ||
makeLocale() | ||
.query({ query: { name: 'Hindi - India' } }) | ||
.find() | ||
.then((locales) => { | ||
locales.items.forEach((locale) => { | ||
expect(locale.code).to.be.equal('hi-in') | ||
expect(locale.name).to.be.equal('Hindi - India') | ||
expect(locale.fallback_locale).to.be.equal('en-us') | ||
expect(locale.uid).to.be.not.equal(null) | ||
}) | ||
done() | ||
}) | ||
.catch(done) | ||
}) | ||
|
||
it('should get a language Hindi - India', done => { | ||
makeLocale('hi-in') | ||
.fetch() | ||
.then((locale) => { | ||
expect(locale.code).to.be.equal('hi-in') | ||
expect(locale.name).to.be.equal('Hindi - India') | ||
expect(locale.fallback_locale).to.be.equal('en-us') | ||
expect(locale.uid).to.be.not.equal(null) | ||
done() | ||
}) | ||
.catch(done) | ||
}) | ||
|
||
it('should get and update a language Hindi - India', done => { | ||
makeLocale('hi-in') | ||
.fetch() | ||
.then((locale) => { | ||
locale.fallback_locale = 'en-at' | ||
return locale.update() | ||
}) | ||
.then((locale) => { | ||
expect(locale.code).to.be.equal('hi-in') | ||
expect(locale.name).to.be.equal('Hindi - India') | ||
expect(locale.fallback_locale).to.be.equal('en-at') | ||
expect(locale.uid).to.be.not.equal(null) | ||
done() | ||
}) | ||
.catch(done) | ||
}) | ||
|
||
it('should delete language: Hindi - India', done => { | ||
makeLocale('mr-in') | ||
.delete() | ||
.then((data) => { | ||
expect(data.notice).to.be.equal('Language removed successfully.') | ||
done() | ||
}) | ||
.catch(done) | ||
}) | ||
}) | ||
|
||
function makeLocale (uid = null) { | ||
return client.stack({ api_key: process.env.API_KEY }).locale(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