2016-07-30 15:59:16 +00:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
jest.autoMockOff();
|
|
|
|
|
2016-05-20 11:52:08 +00:00
|
|
|
const xcode = require('xcode');
|
|
|
|
const hasLibraryImported = require('../../src/ios/hasLibraryImported');
|
2016-07-30 15:59:16 +00:00
|
|
|
const path = require('path');
|
2016-05-20 11:52:08 +00:00
|
|
|
|
2016-07-30 15:59:16 +00:00
|
|
|
const project = xcode.project(
|
|
|
|
path.join(__dirname, '../../__fixtures__/project.pbxproj')
|
|
|
|
);
|
2016-05-20 11:52:08 +00:00
|
|
|
|
|
|
|
describe('ios::hasLibraryImported', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
project.parseSync();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should return true if project has been already imported', () => {
|
|
|
|
const libraries = project.pbxGroupByName('Libraries');
|
2016-07-30 15:59:16 +00:00
|
|
|
expect(hasLibraryImported(libraries, 'React.xcodeproj')).toBeTruthy();
|
2016-05-20 11:52:08 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should return false if project is not imported', () => {
|
|
|
|
const libraries = project.pbxGroupByName('Libraries');
|
2016-07-30 15:59:16 +00:00
|
|
|
expect(hasLibraryImported(libraries, 'ACME.xcodeproj')).toBeFalsy();
|
2016-05-20 11:52:08 +00:00
|
|
|
});
|
|
|
|
});
|