123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253 |
- var assert = require("assert");
- var fs = require("fs");
- var networking = require("../modules/networking");
- var helpers = require("../modules/helpers");
- var logging = require("../modules/logging");
- var config = require("../modules/config");
- var skins = require("../modules/skins");
- var cache = require("../modules/cache");
- var renders = require("../modules/renders");
- // we don't want tests to fail because of slow internet
- config.http_timeout *= 3;
- // no spam
- logging.log = function(){};
- var uuids = fs.readFileSync("test/uuids.txt").toString().split(/\r?\n/);
- var usernames = fs.readFileSync("test/usernames.txt").toString().split(/\r?\n/);
- // Get a random UUID + username in order to prevent rate limiting
- var uuid = uuids[Math.round(Math.random() * (uuids.length - 1))];
- console.log("using uuid '" + uuid + "'");
- var username = usernames[Math.round(Math.random() * (usernames.length - 1))];
- console.log("using username '" + username + "'");
- describe("Crafatar", function() {
- // we might have to make 2 HTTP requests
- this.timeout(config.http_timeout * 2 + 50);
- before(function() {
- cache.get_redis().flushall();
- });
- describe("UUID/username", function() {
- it("should be an invalid uuid", function(done) {
- assert.strictEqual(helpers.uuid_valid("g098cb60fa8e427cb299793cbd302c9a"), false);
- done();
- });
- it("should be an invalid uuid", function(done) {
- assert.strictEqual(helpers.uuid_valid(""), false);
- done();
- });
- it("should be an invalid username", function(done) {
- assert.strictEqual(helpers.uuid_valid("usernäme"), false);
- done();
- });
- it("should be an invalid username", function(done) {
- assert.strictEqual(helpers.uuid_valid("user-name"), false);
- done();
- });
- it("should be an invalid username", function(done) {
- assert.strictEqual(helpers.uuid_valid("ThisNameIsTooLong"), false);
- done();
- });
- it("should be a valid uuid", function(done) {
- assert.strictEqual(helpers.uuid_valid("0098cb60fa8e427cb299793cbd302c9a"), true);
- done();
- });
- it("should be a valid uuid", function(done) {
- assert.strictEqual(helpers.uuid_valid("1DCEF164FF0A47F2B9A691385C774EE7"), true);
- done();
- });
- it("should be a valid uuid", function(done) {
- assert.strictEqual(helpers.uuid_valid("0098cb60-fa8e-427c-b299-793cbd302c9a"), true);
- done();
- });
- it("should be a valid username", function(done) {
- assert.strictEqual(helpers.uuid_valid("__niceUs3rname__"), true);
- done();
- });
- it("should be a valid username", function(done) {
- assert.strictEqual(helpers.uuid_valid("a"), true);
- done();
- });
- it("should not exist (uuid)", function(done) {
- networking.get_skin_url("00000000000000000000000000000000", function(err, profile) {
- assert.strictEqual(err, null);
- done();
- });
- });
- it("should not exist (username)", function(done) {
- networking.get_skin_url("Steve", function(err, profile) {
- assert.strictEqual(err, null);
- done();
- });
- });
- });
- describe("Networking: Avatar", function() {
- it("should be downloaded (uuid)", function(done) {
- helpers.get_avatar(uuid, false, 160, function(err, status, image) {
- assert.strictEqual(status, 2);
- done();
- });
- });
- it("should be cached (uuid)", function(done) {
- helpers.get_avatar(uuid, false, 160, function(err, status, image) {
- assert.strictEqual(status === 0 || status === 1, true);
- done();
- });
- });
- /* We can't test this because of mojang's rate limits :(
- it("should be checked (uuid)", function(done) {
- var original_cache_time = config.local_cache_time;
- config.local_cache_time = 0;
- helpers.get_avatar(uuid, false, 160, function(err, status, image) {
- assert.strictEqual(status, 3);
- config.local_cache_time = original_cache_time;
- done();
- });
- });
- */
- it("should be downloaded (username)", function(done) {
- helpers.get_avatar(username, false, 160, function(err, status, image) {
- assert.strictEqual(status, 2);
- done();
- });
- });
- it("should be cached (username)", function(done) {
- helpers.get_avatar(username, false, 160, function(err, status, image) {
- assert.strictEqual(status === 0 || status === 1, true);
- done();
- });
- });
- it("should be checked (username)", function(done) {
- var original_cache_time = config.local_cache_time;
- config.local_cache_time = 0;
- helpers.get_avatar(username, false, 160, function(err, status, image) {
- assert.strictEqual(status, 3);
- config.local_cache_time = original_cache_time;
- done();
- });
- });
- it("should not exist (but account does)", function(done) {
- // profile "Alex"
- helpers.get_avatar("ec561538f3fd461daff5086b22154bce", false, 160, function(err, status, image) {
- assert.strictEqual(status, 2);
- done();
- });
- });
- it("should default to Alex", function(done) {
- assert.strictEqual(skins.default_skin("ec561538f3fd461daff5086b22154bce"), "alex");
- done();
- });
- it("should default to Steve", function(done) {
- assert.strictEqual(skins.default_skin("b8ffc3d37dbf48278f69475f6690aabd"), "steve");
- done();
- });
- });
- describe("Networking: Skin", function() {
- it("should not fail (uuid)", function(done) {
- helpers.get_skin(uuid, function(err, hash, img) {
- assert.strictEqual(err, null);
- done();
- });
- });
- it("should not fail (username)", function(done) {
- helpers.get_skin(username, function(err, hash, img) {
- assert.strictEqual(err, null);
- done();
- });
- });
- });
- describe("Networking: Renders", function() {
- describe("Head", function() {
- it("should not fail (username)", function(done) {
- helpers.get_render(username, 6, true, false, function(err, status, hash, img) {
- assert.strictEqual(err, null);
- done();
- });
- });
- it("should not fail (uuid)", function(done) {
- helpers.get_render(username, 6, true, false, function(err, status, hash, img) {
- assert.strictEqual(err, null);
- done();
- });
- });
- });
- describe("Body", function() {
- it("should not fail (username)", function(done) {
- helpers.get_render(username, 6, true, true, function(err, status, hash, img) {
- assert.strictEqual(err, null);
- done();
- });
- });
- it("should not fail (uuid)", function(done) {
- helpers.get_render(username, 6, true, true, function(err, status, hash, img) {
- assert.strictEqual(err, null);
- done();
- });
- });
- });
- });
- describe("Errors", function() {
- before(function() {
- cache.get_redis().flushall();
- });
- it("should be rate limited (uuid)", function(done) {
- helpers.get_avatar(uuid, false, 160, function(err, status, image) {
- assert.strictEqual(JSON.parse(err).error, "TooManyRequestsException");
- done();
- });
- });
- it("should NOT be rate limited (username)", function(done) {
- helpers.get_avatar(username, false, 160, function(err, status, image) {
- assert.strictEqual(err, null);
- done();
- });
- });
- it("should time out on uuid info download", function(done) {
- var original_timeout = config.http_timeout;
- config.http_timeout = 1;
- networking.get_skin_url("069a79f444e94726a5befca90e38aaf5", function(err, skin_url) {
- assert.strictEqual(err.code, "ETIMEDOUT");
- config.http_timeout = original_timeout;
- done();
- });
- });
- it("should time out on username info download", function(done) {
- var original_timeout = config.http_timeout;
- config.http_timeout = 1;
- networking.get_skin_url("redstone_sheep", function(err, skin_url) {
- assert.strictEqual(err.code, "ETIMEDOUT");
- config.http_timeout = original_timeout;
- done();
- });
- });
- it("should time out on skin download", function(done) {
- var original_timeout = config.http_timeout;
- config.http_timeout = 1;
- networking.get_skin("http://textures.minecraft.net/texture/477be35554684c28bdeee4cf11c591d3c88afb77e0b98da893fd7bc318c65184", function(err, img) {
- assert.strictEqual(err.code, "ETIMEDOUT");
- config.http_timeout = original_timeout;
- done();
- });
- });
- it("should not find the skin", function(done) {
- assert.doesNotThrow(function() {
- networking.get_skin("http://textures.minecraft.net/texture/this-does-not-exist", function(err, img) {
- assert.strictEqual(err, null); // no error here, but it shouldn't throw exceptions
- done();
- });
- });
- });
- it("should handle file updates on invalid files", function(done) {
- assert.doesNotThrow(function() {
- cache.update_timestamp("0123456789abcdef0123456789abcdef", "invalid-file.png");
- });
- done();
- });
- });
- });
|