tabs -> spaces, add missing semicolons

This commit is contained in:
jomo 2014-11-02 05:29:58 +01:00
parent d9ffa6cc69
commit ea3204395d

View File

@ -1,5 +1,5 @@
var assert = require('assert'); var assert = require('assert');
var fs = require('fs') var fs = require('fs');
var networking = require('../modules/networking'); var networking = require('../modules/networking');
var helpers = require('../modules/helpers'); var helpers = require('../modules/helpers');
@ -8,59 +8,59 @@ var skins = require('../modules/skins');
var uuids = fs.readFileSync('test/uuids.txt').toString().split("\r\n"); var uuids = fs.readFileSync('test/uuids.txt').toString().split("\r\n");
// Get a random UUID in order to prevent rate limiting // Get a random UUID in order to prevent rate limiting
var uuid = uuids[Math.floor((Math.random() * 200) + 1)] var uuid = uuids[Math.floor((Math.random() * 200) + 1)];
// Only deletes files, doesn't delete directory. // Only deletes files, doesn't delete directory.
var deleteFolderRecursive = function(path) { var deleteFolderRecursive = function(path) {
if( fs.existsSync(path) ) { if( fs.existsSync(path) ) {
fs.readdirSync(path).forEach(function(file,index){ fs.readdirSync(path).forEach(function(file,index){
var curPath = path + "/" + file; var curPath = path + "/" + file;
if(fs.lstatSync(curPath).isDirectory()) { if(fs.lstatSync(curPath).isDirectory()) {
deleteFolderRecursive(curPath); deleteFolderRecursive(curPath);
} else { } else {
fs.unlinkSync(curPath); fs.unlinkSync(curPath);
} }
}); });
} }
}; };
describe('Avatar Serving', function(){ describe('Avatar Serving', function(){
before(function() { before(function() {
deleteFolderRecursive('skins/'); deleteFolderRecursive('skins/');
}) });
describe('UUID', function(){ describe('UUID', function(){
it("should be an invalid uuid", function(done){ it("should be an invalid uuid", function(done){
assert.equal(helpers.uuid_valid("invaliduuid"), false); assert.equal(helpers.uuid_valid("invaliduuid"), false);
done(); done();
}); });
it("should be a valid uuid", function(done){ it("should be a valid uuid", function(done){
assert.equal(helpers.uuid_valid("0098cb60fa8e427cb299793cbd302c9a"), true); assert.equal(helpers.uuid_valid("0098cb60fa8e427cb299793cbd302c9a"), true);
done(); done();
}); });
}); });
describe('Avatar', function(){ describe('Avatar', function(){
it("should be downloaded", function(done) { it("should be downloaded", function(done) {
helpers.get_avatar(uuid, false, 180, function(err, status, image) { helpers.get_avatar(uuid, false, 180, function(err, status, image) {
assert.equal(status, 2); assert.equal(status, 2);
done(); done();
}); });
}); });
it("should be local", function(done) { it("should be local", function(done) {
helpers.get_avatar(uuid, false, 180, function(err, status, image) { helpers.get_avatar(uuid, false, 180, function(err, status, image) {
assert.equal(status, 1); assert.equal(status, 1);
done(); done();
}); });
}); });
}); });
describe('Mojang Errors', function(){ describe('Mojang Errors', function(){
before(function() { before(function() {
deleteFolderRecursive('skins/'); deleteFolderRecursive('skins/');
}) });
it("should be rate limited", function(done) { it("should be rate limited", function(done) {
helpers.get_avatar(uuid, false, 180, function(err, status, image) { helpers.get_avatar(uuid, false, 180, function(err, status, image) {
assert.equal(err, null); assert.equal(err, null);
done(); done();
}); });
}); });
}); });
}); });