Innovenergy_trunk/frontend/node_modules/testcafe-hammerhead/lib/request-pipeline/destination-request/windows-domain.js

26 lines
810 B
JavaScript
Raw Normal View History

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.assign = void 0;
const promisified_functions_1 = require("../../utils/promisified-functions");
let cached = null;
async function queryOSForCredential(cmd) {
try {
const { stdout } = await (0, promisified_functions_1.exec)(cmd);
return stdout.replace(/\s/g, '');
}
catch (err) {
return '';
}
}
async function assign(credentials) {
if (!cached) {
cached = {
domain: await queryOSForCredential('echo %userdomain%'),
workstation: await queryOSForCredential('hostname'),
};
}
credentials.domain = credentials.domain || cached.domain;
credentials.workstation = credentials.workstation || cached.workstation;
}
exports.assign = assign;