github-crud (2019.1.21)

Code coverage report for node-github-crud/test.js

Ignored Statements Branches Functions Lines
branches: 19
statements: 21
functions: 7
100%
(169 / 169)
100%
(49 / 49)
100%
(33 / 33)
100%
(169 / 169)
All files » node-github-crud/ » test.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382       2   2 2   2 2 2     2   2 1 1         1 1   1 1 1 1   1       2 2 2   2               2       1 1 1   1                                 1   2           1   2       1   2       1   2           1 1         1     1     2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1           2           2   2 2   2           2 2       2 2 1 1   1 3 3   1 1 1 12 12   3               3   3 3   12   1           2       2 1 1   1                     7 7 13 13   7 7 52   13 13   13 13   52   7 7               7 7         2       2 1 1   1                   6 6 8 8   6 6 32   8 8   8 8   16 16   32   6 6             6 6         2       2 1 1   1 1 1           2 2 2 3 3 3 3 3 3 12   3 3   12   3 3   2         2 2         2       2 1 1   1           2 2       2 2                    
/* istanbul instrument in package github_crud */
/* istanbul ignore next */
/* jslint utility2:true */
(function (globalThis) {
    "use strict";
    var consoleError;
    var local;
    // init globalThis
    (function () {
        try {
            globalThis = Function("return this")(); // jslint ignore:line
        } catch (ignore) {}
    }());
    globalThis.globalThis = globalThis;
    // init debug_inline
    Iif (!globalThis["debug\u0049nline"]) {
        consoleError = console.error;
        globalThis["debug\u0049nline"] = function () {
        /*
         * this function will both print <arguments> to stderr
         * and return <arguments>[0]
         */
            var argList;
            argList = Array.from(arguments); // jslint ignore:line
            // debug arguments
            globalThis["debug\u0049nlineArguments"] = argList;
            consoleError("\n\ndebug\u0049nline");
            consoleError.apply(console, argList);
            consoleError("\n");
            // return arg0 for inspection
            return argList[0];
        };
    }
    // init local
    local = {};
    local.local = local;
    globalThis.globalLocal = local;
    // init isBrowser
    local.isBrowser = (
        typeof window === "object"
        && window === globalThis
        && typeof window.XMLHttpRequest === "function"
        && window.document
        && typeof window.document.querySelector === "function"
    );
    // init function
    local.assertThrow = function (passed, message) {
    /*
     * this function will throw error <message> if <passed> is falsy
     */
        var error;
        if (passed) {
            return;
        }
        error = (
            // ternary-condition
            (
                message
                && typeof message.message === "string"
                && typeof message.stack === "string"
            )
            // if message is an error-object, then leave it as is
            ? message
            : new Error(
                typeof message === "string"
                // if message is a string, then leave it as is
                ? message
                // else JSON.stringify message
                : JSON.stringify(message, null, 4)
            )
        );
        throw error;
    };
    local.functionOrNop = function (fnc) {
    /*
     * this function will if <fnc> exists,
     * them return <fnc>,
     * else return <nop>
     */
        return fnc || local.nop;
    };
    local.identity = function (value) {
    /*
     * this function will return <value>
     */
        return value;
    };
    local.nop = function () {
    /*
     * this function will do nothing
     */
        return;
    };
    local.objectAssignDefault = function (target, source) {
    /*
     * this function will if items from <target> are
     * null, undefined, or empty-string,
     * then overwrite them with items from <source>
     */
        Object.keys(source).forEach(function (key) {
            if (
                target[key] === null
                || target[key] === undefined
                || target[key] === ""
            ) {
                target[key] = target[key] || source[key];
            }
        });
        return target;
    };
    // require builtin
    if (!local.isBrowser) {
        local.assert = require("assert");
        local.buffer = require("buffer");
        local.child_process = require("child_process");
        local.cluster = require("cluster");
        local.crypto = require("crypto");
        local.dgram = require("dgram");
        local.dns = require("dns");
        local.domain = require("domain");
        local.events = require("events");
        local.fs = require("fs");
        local.http = require("http");
        local.https = require("https");
        local.net = require("net");
        local.os = require("os");
        local.path = require("path");
        local.querystring = require("querystring");
        local.readline = require("readline");
        local.repl = require("repl");
        local.stream = require("stream");
        local.string_decoder = require("string_decoder");
        local.timers = require("timers");
        local.tls = require("tls");
        local.tty = require("tty");
        local.url = require("url");
        local.util = require("util");
        local.vm = require("vm");
        local.zlib = require("zlib");
    }
}(this));
 
 
 
(function (local) {
"use strict";
 
 
 
// run shared js-env code - init-before
(function () {
// init local
local = (globalThis.utility2 || require("utility2")).requireReadme();
globalThis.local = local;
// init test
local.testRunDefault(local);
}());
 
 
 
// run shared js-env code - function
(function () {
local.testCase_githubCrudContentDelete_tree = function (options, onError) {
/*
 * this function will test githubCrudContentDelete's tree handling-behavior
 */
    var httpRequest;
    if (local.isBrowser) {
        onError(null, options);
        return;
    }
    httpRequest = function (urlParsed, onResponse) {
        onResponse(httpRequest, urlParsed);
        return httpRequest;
    };
    httpRequest.end = local.nop;
    httpRequest.ii = -1;
    httpRequest.on = function (type, onError) {
        httpRequest.ii += 1;
        switch (type) {
        case "data":
            onError(Buffer.from(
                httpRequest.ii
                ? "{\"sha\":\"aa\"}"
                : (
                    "[{\"url\":\"https://github.com"
                    + "/:owner/:repo/blob/:branch/:path\"}]"
                )
            ));
            break;
        case "end":
            onError();
            break;
        }
        return httpRequest;
    };
    local.githubCrudContentDelete({
        httpRequest: httpRequest,
        url: "https://github.com/:owner/:repo/blob/:branch/:path"
    }, onError);
};
 
local.testCase_githubCrudContentXxx_default = function (options, onError) {
/*
 * this function will test githubCrudContentXxx's default handling-behavior
 */
    if (local.isBrowser) {
        onError(null, options);
        return;
    }
    local.onParallelList({
        list: [
            "githubCrudAjax",
            "githubCrudContentDelete",
            "githubCrudContentGet",
            "githubCrudContentPut",
            "githubCrudContentPutFile",
            "githubCrudContentTouch",
            "githubCrudContentTouchList"
        ]
    }, function (options2, onParallel) {
        var httpRequest;
        httpRequest = function (urlParsed, onResponse) {
            setTimeout(onResponse, 0, httpRequest, urlParsed);
            return httpRequest;
        };
        httpRequest.end = local.nop;
        httpRequest.on = function (type, onError) {
            switch (type) {
            case "data":
                onError(Buffer.from("{\"sha\":\"aa\"}"));
                break;
            case "end":
                setTimeout(onError);
                break;
            }
            return httpRequest;
        };
        onParallel.counter += 1;
        local[options2.element]({
            content: "aa",
            file: "https://github.com/:owner/:repo/blob/:branch/:path",
            httpRequest: httpRequest,
            url: "https://github.com/:owner/:repo/blob/:branch/:path",
            urlList: ["https://github.com/:owner/:repo/blob/:branch/:path"]
        }, function (error) {
            // validate no error occurred
            local.assertThrow(!error, error);
            onParallel(null, options);
        });
    }, onError);
};
 
local.testCase_githubCrudContentXxx_error = function (options, onError) {
/*
 * this function will test githubCrudContentXxx's error handling-behavior
 */
    if (local.isBrowser) {
        onError(null, options);
        return;
    }
    local.onParallelList({
        list: [
            "githubCrudAjax",
            "githubCrudContentGet",
            "githubCrudContentPut",
            "githubCrudContentPutFile",
            "githubCrudContentTouch",
            "githubCrudContentTouchList"
        ]
    }, function (options2, onParallel) {
        var httpRequest;
        httpRequest = function (urlParsed, onResponse) {
            setTimeout(onResponse, 0, httpRequest, urlParsed);
            return httpRequest;
        };
        httpRequest.end = local.nop;
        httpRequest.on = function (type, onError) {
            switch (type) {
            case "data":
                onError(Buffer.from("{}"));
                break;
            case "end":
                setTimeout(onError);
                break;
            case "error":
                setTimeout(onError, null, local.errorDefault);
                break;
            }
            return httpRequest;
        };
        onParallel.counter += 1;
        local[options2.element]({
            file: "package.json",
            httpRequest: httpRequest,
            url: "https://github.com/:owner/:repo/blob/:branch/:path/",
            urlList: ["error"]
        }, function (error) {
            // validate error occurred
            local.assertThrow(error, options2);
            onParallel(null, options);
        });
    }, onError);
};
 
local.testCase_githubCrudRepoXxxList_default = function (options, onError) {
/*
 * this function will test githubCrudRepoXxxList's default handling-behavior
 */
    if (local.isBrowser) {
        onError(null, options);
        return;
    }
    options = {};
    options.statusCode = 404;
    local.onParallelList({
        list: [
            "githubCrudRepoCreateList",
            "githubCrudRepoDeleteList"
        ]
    }, function (options2, onParallel) {
        var httpRequest;
        onParallel.counter += 1;
        httpRequest = function (urlParsed, onResponse) {
            var requestObj;
            requestObj = {};
            requestObj.statusCode = options.statusCode;
            options.statusCode = 0;
            requestObj.end = local.nop;
            requestObj.on = function (type, onError) {
                switch (type) {
                case "end":
                    setTimeout(onError);
                    break;
                }
                return requestObj;
            };
            setTimeout(onResponse, 0, requestObj, urlParsed);
            return requestObj;
        };
        local[options2.element]({
            httpRequest: httpRequest,
            urlList: ["aa/bb"]
        }, function (error) {
            // validate no error occurred
            local.assertThrow(!error, error);
            onParallel(null, options);
        });
    }, onError);
};
 
local.testCase_githubCrudRepoXxx_error = function (options, onError) {
/*
 * this function will test githubCrudRepoXxx's error handling-behavior
 */
    if (local.isBrowser) {
        onError(null, options);
        return;
    }
    local.onParallelList({
        list: [
            "githubCrudRepoCreateList",
            "githubCrudRepoDeleteList"
        ]
    }, function (options2, onParallel) {
        onParallel.counter += 1;
        local[options2.element]({
            urlList: ["undefined"]
        }, function (error) {
            // validate error occurred
            local.assertThrow(error, error);
            onParallel(null, options);
        });
    }, onError);
};
}());
 
 
 
}());