react-native/local-cli/link/__tests__/ios/createGroup.spec.js
Héctor Ramos 4f883bd0bc Restore copyright header
Summary:
Restoring the copyright header on some files, in order to fix an internal lint failure that is raised whenever these files are edited on open source.
Closes https://github.com/facebook/react-native/pull/17912

Differential Revision: D6938189

Pulled By: hramos

fbshipit-source-id: 6447d8ad6d7ecce0ef5f1821f63e44957bbf6d15
2018-02-08 17:52:11 -08:00

68 lines
1.9 KiB
JavaScript

/**
* Copyright (c) 2015-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
* All rights reserved.
*
* @emails oncall+javascript_foundation
*/
'use strict';
const xcode = require('xcode');
const path = require('path');
const createGroup = require('../../ios/createGroup');
const getGroup = require('../../ios/getGroup');
const last = require('lodash').last;
const project = xcode.project(
path.join(__dirname, '../../__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).toBe('Resources');
});
it('should attach group to main project group', () => {
const createdGroup = createGroup(project, 'Resources');
const mainGroup = getGroup(project);
expect(
last(mainGroup.children).comment
).toBe(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
).toBe(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
).toBe(1);
expect(last(outerGroup.children).comment).toBe(createdGroup.name);
});
});