You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
809 B
JavaScript
25 lines
809 B
JavaScript
#!/usr/bin/env node
|
|
|
|
var request = require('request')
|
|
, path = require('path')
|
|
, fs = require('fs');
|
|
|
|
var files = {
|
|
'pgts.yaml': 'https://raw.github.com/tobie/ua-parser/master/test_resources/pgts_browser_list.yaml'
|
|
, 'testcases.yaml': 'https://raw.github.com/tobie/ua-parser/master/test_resources/test_user_agent_parser.yaml'
|
|
, 'firefoxes.yaml': 'https://raw.github.com/tobie/ua-parser/master/test_resources/firefox_user_agent_strings.yaml'
|
|
};
|
|
|
|
/**
|
|
* Update the fixtures
|
|
*/
|
|
|
|
Object.keys(files).forEach(function (key) {
|
|
request(files[key], function response (err, res, data) {
|
|
if (err || res.statusCode !== 200) return console.error('failed to update');
|
|
|
|
console.log('downloaded', files[key]);
|
|
fs.writeFileSync(path.join(__dirname, '..', 'tests', 'fixtures', key), data);
|
|
});
|
|
});
|