123456789101112131415161718192021222324 |
- #!/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);
- });
- });
|