UNPKG

appium-xcuitest-driver

Version:

Appium driver for iOS using XCUITest for backend

74 lines 3.2 kB
"use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function(o, v) { o["default"] = v; }); var __importStar = (this && this.__importStar) || (function () { var ownKeys = function(o) { ownKeys = Object.getOwnPropertyNames || function (o) { var ar = []; for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; return ar; }; return ownKeys(o); }; return function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); __setModuleDefault(result, mod); return result; }; })(); var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); const sinon_1 = __importDefault(require("sinon")); const driver_1 = require("../../../lib/driver"); const chai_1 = __importStar(require("chai")); const chai_as_promised_1 = __importDefault(require("chai-as-promised")); chai_1.default.use(chai_as_promised_1.default); describe('get activeapp commands', function () { const driver = new driver_1.XCUITestDriver({}); driver._wda = { jwproxy: { command: async () => ({}) } }; let proxyStub; beforeEach(function () { proxyStub = sinon_1.default.stub(driver.wda.jwproxy, 'command'); }); afterEach(function () { proxyStub.restore(); }); it('get active app info', async function () { proxyStub.returns({ pid: 15438, name: '', bundleId: 'com.apple.DocumentsApp', processArguments: { env: { HAPPY: 'testing' }, args: ['happy', 'testing'] }, }); const out = await driver.mobileGetActiveAppInfo(); (0, chai_1.expect)(out.pid).to.eq(15438); (0, chai_1.expect)(out.name).to.eq(''); (0, chai_1.expect)(out.bundleId).to.eq('com.apple.DocumentsApp'); (0, chai_1.expect)(out.processArguments.env.HAPPY).to.eq('testing'); (0, chai_1.expect)(out.processArguments.args[0]).to.eq('happy'); (0, chai_1.expect)(out.processArguments.args[1]).to.eq('testing'); }); it('get active app info raise an error if the endpoint raises error', async function () { proxyStub.throws(); await (0, chai_1.expect)(driver.mobileGetActiveAppInfo()).to.be.rejected; }); }); //# sourceMappingURL=activeAppInfo-specs.js.map