forked from apache/cordova-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbootstrap.js
More file actions
95 lines (88 loc) · 4.4 KB
/
bootstrap.js
File metadata and controls
95 lines (88 loc) · 4.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/**
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
**
* BOOTSTRAP
* Runs through any bs to make sure the libraries and tests are good to go.
**/
var util = require('./src/util'),
create = require('./src/create'),
a_parser = require('./src/metadata/android_parser'),
b_parser = require('./src/metadata/blackberry_parser'),
i_parser = require('./src/metadata/ios_parser'),
path = require('path'),
fs = require('fs'),
shell = require('shelljs'),
platforms = require('./platforms');
// Library requirements checkers
var min_reqs = {
"android":a_parser.check_requirements,
"ios":i_parser.check_requirements,
"blackberry":b_parser.check_requirements
}
// Create native projects using bin/create
var projectFixtures = path.join(__dirname, 'spec', 'fixtures', 'projects');
var tempDir = path.join(projectFixtures, 'native');
shell.rm('-rf', tempDir);
shell.mkdir('-p', tempDir);
// Also create a standard cordova project for tests
var cordovaDir = path.join(projectFixtures, 'cordova');
shell.rm('-rf', cordovaDir);
create(cordovaDir);
var platformsDir = path.join(cordovaDir, 'platforms');
// kill the stupid spec shit!
shell.rm('-rf', path.join(cordovaDir, 'www', 'spec'));
platforms.forEach(function(platform) {
min_reqs[platform](function(err) {
if (err) {
console.error('WARNING: Your system does not meet requirements to create ' + platform + 'projects. See error output below.');
console.error(err);
console.error('SKIPPING ' + platform + ' bootstrap.');
} else {
console.log('SUCCESS: Minimum requirements for ' + platform + ' met.');
var fix_path = path.join(tempDir, platform + '_fixture');
var create = path.join(util.libDirectory, 'cordova-' + platform, 'bin', 'create');
console.log('BOOTSTRAPPING ' + platform + '...');
var cmd = create + ' "' + fix_path + '" org.apache.cordova.cordovaExample cordovaExample';
if (platform == 'blackberry') cmd = create + ' "' + fix_path + '" cordovaExample';
shell.exec(cmd, {silent:true, async:true}, function(code, output) {
if (code > 0) {
console.error('ERROR! Could not create a native ' + platform + ' project test fixture. See below for error output.');
console.error(output);
} else {
var platformDir = path.join(platformsDir, platform);
// remove extra spec bullshit as it intereferes with jasmine-node
var dub = path.join(fix_path, 'www');
if (platform == 'android') dub = path.join(fix_path, 'assets', 'www');
shell.rm('-rf', path.join(dub, 'spec'));
// copy over to full cordova project test fixture
shell.mkdir('-p', platformDir);
shell.cp('-rf', path.join(fix_path, '*'), platformDir);
// set permissions on executables
var scripts_path = path.join(fix_path, 'cordova');
var other_path = path.join(platformDir, 'cordova');
var scripts = fs.readdirSync(scripts_path);
scripts.forEach(function(script) {
var script_path = path.join(scripts_path, script);
var other_script_path = path.join(other_path, script);
shell.chmod('+x', script_path);
shell.chmod('+x', other_script_path);
});
console.log('SUCCESS: ' + platform + ' ready to rock!');
}
});
}
});
});