Files
cypress/packages/server/test/unit/files_spec.js
T
Alejandro Estrada 0366d4fa89 feat: use supportFile by testingType (#19364)
* feat: use supportFile by testingType

* Fix defaults

* Start renaming files, and updating system-tests

* Fix some tests

* Fix some tests

* Fix more tests

* Try to fix CI

* Fix more tests

* Fix some tests

* Revert changes

* Revert supportFile defaultValue

* Fix some tests

* Fix some tests

* Fix some tests

* Fix some tests

* Update supportFile example

* Update snapshots

* Remove scaffold support

* Handle config errors

* Remove scaffold

* Fix tests

* Fix test

* Update test

* Fix test

* Update supportFile template

* Fix template
2022-01-05 13:37:44 -05:00

130 lines
4.7 KiB
JavaScript

require('../spec_helper')
const files = require('../../lib/files')
const config = require('../../lib/config')
const FixturesHelper = require('@tooling/system-tests/lib/fixtures')
const { getCtx } = require('../../lib/makeDataContext')
let ctx
describe('lib/files', () => {
beforeEach(function () {
ctx = getCtx()
FixturesHelper.scaffold()
this.todosPath = FixturesHelper.projectPath('todos')
ctx.actions.project.setCurrentProjectAndTestingTypeForTestSetup(this.todosPath)
return config.get(this.todosPath).then((cfg) => {
this.config = cfg;
({ projectRoot: this.projectRoot } = cfg)
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, '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, 'tests/_fixtures/ascii.foo').then(({ contents }) => {
expect(contents).to.eq('\n')
})
})
it('uses encoding specified in options', function () {
return files.readFile(this.projectRoot, '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, '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, '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, '.projects/write_file.txt', 'foo').then(() => {
return files.readFile(this.projectRoot, '.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, '.projects/write_file.txt', '', { encoding: 'ascii' }).then(() => {
return files.readFile(this.projectRoot, '.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, '.projects/write_file.txt', Buffer.from(''), { encoding: null }).then(() => {
return files.readFile(this.projectRoot, '.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, '.projects/write_file.txt', 'foo').then(() => {
return files.readFile(this.projectRoot, '.projects/write_file.txt').then(({ contents }) => {
expect(contents).to.equal('foo')
return files.writeFile(this.projectRoot, '.projects/write_file.txt', 'bar').then(() => {
return files.readFile(this.projectRoot, '.projects/write_file.txt').then(({ contents }) => {
expect(contents).to.equal('bar')
})
})
})
})
})
it('appends content to file when specified', function () {
return files.writeFile(this.projectRoot, '.projects/write_file.txt', 'foo').then(() => {
return files.readFile(this.projectRoot, '.projects/write_file.txt').then(({ contents }) => {
expect(contents).to.equal('foo')
return files.writeFile(this.projectRoot, '.projects/write_file.txt', 'bar', { flag: 'a+' }).then(() => {
return files.readFile(this.projectRoot, '.projects/write_file.txt').then(({ contents }) => {
expect(contents).to.equal('foobar')
})
})
})
})
})
})
})