mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-05 05:59:49 -06:00
* chore(deps): Update eslint to 6.8.0 🌟 * fix missing dangling commas for linter * fix missing dangling commas for linter * more lint fixes * yarn lock Co-authored-by: WhiteSource Renovate <renovatebot@gmail.com> Co-authored-by: Jennifer Shehane <shehane.jennifer@gmail.com>
104 lines
2.7 KiB
JavaScript
104 lines
2.7 KiB
JavaScript
const { expect } = require('../spec_helper')
|
|
|
|
let fs = require('fs-extra')
|
|
const path = require('path')
|
|
const Promise = require('bluebird')
|
|
const CA = require('../../lib/ca')
|
|
|
|
fs = Promise.promisifyAll(fs)
|
|
|
|
describe('lib/ca', () => {
|
|
beforeEach(function () {
|
|
this.timeout(5000)
|
|
|
|
this.dir = path.join(process.cwd(), 'tmp')
|
|
|
|
return fs.ensureDirAsync(this.dir)
|
|
.then(() => {
|
|
return CA.create(this.dir)
|
|
}).then((ca) => {
|
|
this.ca = ca
|
|
})
|
|
})
|
|
|
|
afterEach(function () {
|
|
return fs.removeAsync(this.dir)
|
|
})
|
|
|
|
context('#generateServerCertificateKeys', () => {
|
|
it('generates certs for each host', function () {
|
|
return this.ca.generateServerCertificateKeys('www.cypress.io')
|
|
.spread((certPem, keyPrivatePem) => {
|
|
expect(certPem).to.include('-----BEGIN CERTIFICATE-----')
|
|
|
|
expect(keyPrivatePem).to.include('-----BEGIN RSA PRIVATE KEY-----')
|
|
})
|
|
})
|
|
})
|
|
|
|
context('.create', () => {
|
|
it('returns a new CA instance', function () {
|
|
expect(this.ca).to.be.an.instanceof(CA)
|
|
})
|
|
|
|
it('creates certs + keys dir', function () {
|
|
return Promise.join(
|
|
fs.statAsync(path.join(this.dir, 'certs')),
|
|
fs.statAsync(path.join(this.dir, 'keys')),
|
|
)
|
|
})
|
|
|
|
it('writes certs/ca.pem', function () {
|
|
return fs.statAsync(path.join(this.dir, 'certs', 'ca.pem'))
|
|
})
|
|
|
|
it('writes keys/ca.private.key', function () {
|
|
return fs.statAsync(path.join(this.dir, 'keys', 'ca.private.key'))
|
|
})
|
|
|
|
it('writes keys/ca.public.key', function () {
|
|
return fs.statAsync(path.join(this.dir, 'keys', 'ca.public.key'))
|
|
})
|
|
|
|
it('sets ca.CAcert', function () {
|
|
expect(this.ca.CAcert).to.be.an('object')
|
|
})
|
|
|
|
it('sets ca.CAkeys', function () {
|
|
expect(this.ca.CAkeys).to.be.an('object')
|
|
expect(this.ca.CAkeys).to.have.a.property('privateKey')
|
|
|
|
expect(this.ca.CAkeys).to.have.a.property('publicKey')
|
|
})
|
|
|
|
describe('existing CA folder', () => {
|
|
beforeEach(function () {
|
|
this.sandbox.spy(CA.prototype, 'loadCA')
|
|
this.sandbox.spy(CA.prototype, 'generateCA')
|
|
|
|
return CA.create(this.dir)
|
|
.then((ca2) => {
|
|
this.ca2 = ca2
|
|
})
|
|
})
|
|
|
|
it('calls loadCA and not generateCA', () => {
|
|
expect(CA.prototype.loadCA).to.be.calledOnce
|
|
|
|
expect(CA.prototype.generateCA).not.to.be.called
|
|
})
|
|
|
|
it('sets ca.CAcert', function () {
|
|
expect(this.ca2.CAcert).to.be.an('object')
|
|
})
|
|
|
|
it('sets ca.CAkeys', function () {
|
|
expect(this.ca2.CAkeys).to.be.an('object')
|
|
expect(this.ca2.CAkeys).to.have.a.property('privateKey')
|
|
|
|
expect(this.ca2.CAkeys).to.have.a.property('publicKey')
|
|
})
|
|
})
|
|
})
|
|
})
|