50 lines
1.5 KiB
JavaScript
50 lines
1.5 KiB
JavaScript
const chai = require('chai');
|
|
const expect = chai.expect;
|
|
const xcode = require('xcode');
|
|
const createGroup = require('../../src/ios/createGroup');
|
|
const getGroup = require('../../src/ios/getGroup');
|
|
const last = require('lodash').last;
|
|
|
|
const project = xcode.project('test/fixtures/project.pbxproj');
|
|
|
|
describe('ios::createGroup', () => {
|
|
|
|
beforeEach(() => {
|
|
project.parseSync();
|
|
});
|
|
|
|
it('should create a group with given name', () => {
|
|
const createdGroup = createGroup(project, 'Resources');
|
|
expect(createdGroup.name).to.equals('Resources');
|
|
});
|
|
|
|
it('should attach group to main project group', () => {
|
|
const createdGroup = createGroup(project, 'Resources');
|
|
const mainGroup = getGroup(project);
|
|
|
|
expect(
|
|
last(mainGroup.children).comment
|
|
).to.equals(createdGroup.name);
|
|
});
|
|
|
|
it('should create a nested group with given path', () => {
|
|
const createdGroup = createGroup(project, 'NewGroup/NewNestedGroup');
|
|
const outerGroup = getGroup(project, 'NewGroup');
|
|
|
|
expect(
|
|
last(outerGroup.children).comment
|
|
).to.equals(createdGroup.name);
|
|
});
|
|
|
|
it('should-not create already created groups', () => {
|
|
const createdGroup = createGroup(project, 'Libraries/NewNestedGroup');
|
|
const outerGroup = getGroup(project, 'Libraries');
|
|
const mainGroup = getGroup(project);
|
|
|
|
expect(
|
|
mainGroup.children.filter(group => group.comment === 'Libraries').length
|
|
).to.equals(1);
|
|
expect(last(outerGroup.children).comment).to.equals(createdGroup.name);
|
|
});
|
|
});
|