blob: d3f732d93b8534dbf634bed36ab03647676ac8a8 [file] [log] [blame]
/*
Copyright 2012 Adobe Systems Inc.;
Licensed 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.
*/
var submitData = function (stdout, path, args, destination) {
var querystring = require('querystring');
var http = require('http');
var fs = require('fs');
var parse = require('./csvToJSON');
var postOptions = require('./settings');
var fileName = require('./extractFileName.js');
var post_data = {};
console.log(path);
parse(path, function (j) {
post_data = {
resultName : j
};
var version = stdout.split(' ');
post_data.commit = version.shift();
post_data.date = version.join(' ');
post_data.test = args.test || fileName(path);
post_data.device = args.device || 'device?';
post_data = querystring.stringify({data : JSON.stringify(post_data)});
post_options = postOptions(post_data.length);
if (destination.host && destination.port) {
var location = destination.host.split('/');
post_options.host = location.shift();
post_options.port = destination.port;
}
// Set up the request
var post_req = http.request(post_options, function(res) {
res.setEncoding('utf8');
res.on('data', function(chunk) {
console.log(chunk);
});
});
// post the data
post_req.write(post_data);
post_req.end();
});
};
module.exports = submitData;