mirror of
https://github.com/cypress-io/cypress.git
synced 2026-04-29 03:09:53 -05:00
129 lines
4.9 KiB
JavaScript
129 lines
4.9 KiB
JavaScript
require('../spec_helper')
|
|
|
|
const files = require('../../lib/files')
|
|
const FixturesHelper = require('@tooling/system-tests')
|
|
const { getCtx } = require('../../lib/makeDataContext')
|
|
|
|
let ctx
|
|
|
|
describe('lib/files', () => {
|
|
beforeEach(async function () {
|
|
ctx = getCtx()
|
|
FixturesHelper.scaffold()
|
|
|
|
this.todosPath = FixturesHelper.projectPath('todos')
|
|
|
|
await ctx.actions.project.setCurrentProjectAndTestingTypeForTestSetup(this.todosPath)
|
|
|
|
return ctx.lifecycleManager.getFullInitialConfig().then(async (cfg) => {
|
|
this.config = cfg;
|
|
({ projectRoot: this.projectRoot } = cfg)
|
|
await ctx.actions.project.setCurrentProjectAndTestingTypeForTestSetup(this.projectRoot)
|
|
})
|
|
})
|
|
|
|
afterEach(() => {
|
|
return FixturesHelper.remove()
|
|
})
|
|
|
|
context('#readFile', () => {
|
|
it('returns contents and full file path', function () {
|
|
return files.readFile(this.projectRoot, { file: 'tests/_fixtures/message.txt' }).then(({ contents, filePath }) => {
|
|
expect(contents).to.eq('foobarbaz')
|
|
|
|
expect(filePath).to.include('/cy-projects/todos/tests/_fixtures/message.txt')
|
|
})
|
|
})
|
|
|
|
it('returns uses utf8 by default', function () {
|
|
return files.readFile(this.projectRoot, { file: 'tests/_fixtures/ascii.foo' }).then(({ contents }) => {
|
|
expect(contents).to.eq('\n')
|
|
})
|
|
})
|
|
|
|
it('uses encoding specified in options', function () {
|
|
return files.readFile(this.projectRoot, { file: 'tests/_fixtures/ascii.foo', encoding: 'ascii' }).then(({ contents }) => {
|
|
expect(contents).to.eq('o#?\n')
|
|
})
|
|
})
|
|
|
|
// https://github.com/cypress-io/cypress/issues/1558
|
|
it('explicit null encoding is sent to driver as a Buffer', function () {
|
|
return files.readFile(this.projectRoot, { file: 'tests/_fixtures/ascii.foo', encoding: null }).then(({ contents }) => {
|
|
expect(contents).to.eql(Buffer.from('\n'))
|
|
})
|
|
})
|
|
|
|
it('parses json to valid JS object', function () {
|
|
return files.readFile(this.projectRoot, { file: 'tests/_fixtures/users.json' }).then(({ contents }) => {
|
|
expect(contents).to.eql([
|
|
{
|
|
id: 1,
|
|
name: 'brian',
|
|
}, {
|
|
id: 2,
|
|
name: 'jennifer',
|
|
},
|
|
])
|
|
})
|
|
})
|
|
})
|
|
|
|
context('#writeFile', () => {
|
|
it('writes the file\'s contents and returns contents and full file path', function () {
|
|
return files.writeFile(this.projectRoot, { fileName: '.projects/write_file.txt', contents: 'foo' }).then(() => {
|
|
return files.readFile(this.projectRoot, { file: '.projects/write_file.txt' }).then(({ contents, filePath }) => {
|
|
expect(contents).to.equal('foo')
|
|
|
|
expect(filePath).to.include('/cy-projects/todos/.projects/write_file.txt')
|
|
})
|
|
})
|
|
})
|
|
|
|
it('uses encoding specified in options', function () {
|
|
return files.writeFile(this.projectRoot, { fileName: '.projects/write_file.txt', contents: '', encoding: 'ascii' }).then(() => {
|
|
return files.readFile(this.projectRoot, { file: '.projects/write_file.txt' }).then(({ contents }) => {
|
|
expect(contents).to.equal('�')
|
|
})
|
|
})
|
|
})
|
|
|
|
// https://github.com/cypress-io/cypress/issues/1558
|
|
it('explicit null encoding is written exactly as received', function () {
|
|
return files.writeFile(this.projectRoot, { fileName: '.projects/write_file.txt', contents: Buffer.from(''), encoding: null }).then(() => {
|
|
return files.readFile(this.projectRoot, { file: '.projects/write_file.txt', encoding: null }).then(({ contents }) => {
|
|
expect(contents).to.eql(Buffer.from(''))
|
|
})
|
|
})
|
|
})
|
|
|
|
it('overwrites existing file by default', function () {
|
|
return files.writeFile(this.projectRoot, { fileName: '.projects/write_file.txt', contents: 'foo' }).then(() => {
|
|
return files.readFile(this.projectRoot, { file: '.projects/write_file.txt' }).then(({ contents }) => {
|
|
expect(contents).to.equal('foo')
|
|
|
|
return files.writeFile(this.projectRoot, { fileName: '.projects/write_file.txt', contents: 'bar' }).then(() => {
|
|
return files.readFile(this.projectRoot, { file: '.projects/write_file.txt' }).then(({ contents }) => {
|
|
expect(contents).to.equal('bar')
|
|
})
|
|
})
|
|
})
|
|
})
|
|
})
|
|
|
|
it('appends content to file when specified', function () {
|
|
return files.writeFile(this.projectRoot, { fileName: '.projects/write_file.txt', contents: 'foo' }).then(() => {
|
|
return files.readFile(this.projectRoot, { file: '.projects/write_file.txt' }).then(({ contents }) => {
|
|
expect(contents).to.equal('foo')
|
|
|
|
return files.writeFile(this.projectRoot, { fileName: '.projects/write_file.txt', contents: 'bar', flag: 'a+' }).then(() => {
|
|
return files.readFile(this.projectRoot, { file: '.projects/write_file.txt' }).then(({ contents }) => {
|
|
expect(contents).to.equal('foobar')
|
|
})
|
|
})
|
|
})
|
|
})
|
|
})
|
|
})
|
|
})
|