Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: uninstall the test app once and install that again when MismatchedApplicationIdentifierEntitlement installation error occurs #2050

Merged
merged 38 commits into from
Oct 2, 2023
Merged
Show file tree
Hide file tree
Changes from 32 commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
8c89094
fix: calls remove app every time
KazuCocoa Sep 28, 2023
5bb1bac
chore: leave comment
KazuCocoa Sep 29, 2023
38833de
fix: logs typo
KazuCocoa Sep 29, 2023
9dc2288
docs: leave comment, update docs
KazuCocoa Sep 29, 2023
8185f1a
docs: address in listApps
KazuCocoa Sep 29, 2023
5f487aa
chore: tune a bit, address note about offload app
KazuCocoa Sep 29, 2023
7546028
chore: add note
KazuCocoa Sep 29, 2023
943abc8
chore: tune a bit
KazuCocoa Sep 29, 2023
bc791ea
docs: tweak
KazuCocoa Sep 29, 2023
9767797
docs: append note, capabilities note
KazuCocoa Sep 30, 2023
f4481e6
docs: append note further
KazuCocoa Sep 30, 2023
c55bc9f
docs: tune the log
KazuCocoa Sep 30, 2023
ef44ead
chore: leave logs to clarify the situation
KazuCocoa Sep 30, 2023
c4d1840
chore: tweak error handling
KazuCocoa Sep 30, 2023
22c0415
chore: modify logs further
KazuCocoa Sep 30, 2023
3261b1e
chore: tune logs
KazuCocoa Sep 30, 2023
9278b5a
docs: add more description about removeApp
KazuCocoa Sep 30, 2023
b4d4144
test: add tests
KazuCocoa Sep 30, 2023
4fffe99
fix: types of specs
KazuCocoa Sep 30, 2023
6578fc0
docs: typo
KazuCocoa Sep 30, 2023
dca8544
test: remove unused _
KazuCocoa Sep 30, 2023
00ed99f
fix: get bundle id in each app path for otherapps
KazuCocoa Sep 30, 2023
e5b8bed
fix: add undefined check for bundle id as well
KazuCocoa Sep 30, 2023
096e54a
chore: tune log
KazuCocoa Sep 30, 2023
5c9d486
docs: add troubleshooting
KazuCocoa Sep 30, 2023
0c53654
chore: change the log level
KazuCocoa Sep 30, 2023
e253053
docs: tweak the description
KazuCocoa Sep 30, 2023
aa992bb
chore: revert unnecessary changes
KazuCocoa Sep 30, 2023
cd15457
docs: tweak
KazuCocoa Sep 30, 2023
c430358
docs: tweak
KazuCocoa Sep 30, 2023
9f45b4a
chore: fix review
KazuCocoa Sep 30, 2023
ffc4761
docs: tweak troubleshooting
KazuCocoa Sep 30, 2023
45462b9
test: add tests
KazuCocoa Sep 30, 2023
4776a6c
fix: lint
KazuCocoa Sep 30, 2023
dfbf156
Merge branch 'master' into tune-remove-in-install
KazuCocoa Oct 1, 2023
593ee43
chore: tweak review
KazuCocoa Oct 1, 2023
644f46f
chore: tweak
KazuCocoa Oct 2, 2023
982e9cf
chore: tune the condition
KazuCocoa Oct 2, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/capabilities.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Capability           &nbs
`appium:platformVersion` | The platform version of an emulator or a real device. This capability is used for device autodetection if `udid` is not provided
`appium:udid` | UDID of the device to be tested. Could be retrieved from Xcode->Window->Devices and Simulators window. Always set this capability if you run parallel tests or use a real device to run your tests.
`appium:noReset` | Prevents the device to be reset before the session startup if set to `true`. This means that the application under test is not going to be terminated neither its data cleaned. `false` by default
`appium:fullReset` | Being set to `true` always enforces the application under test to be fully uninstalled before starting a new session. `false` by default
`appium:fullReset` | Being set to `true` always enforces the application under test to be fully uninstalled before starting a new session. The application data would remain for real devices if the application under test remained on the device under a certain situation. Please check [troubleshooting](troubleshooting.md#clear-the-application-local-data-explicitly-for-real-devices) for more details regarding obsolete application data cleanup on real devices. `false` by default
KazuCocoa marked this conversation as resolved.
Show resolved Hide resolved
`appium:printPageSourceOnFindFailure` | Enforces the server to dump the actual XML page source into the log if any error happens. `false` by default.
`browserName` | The name of the browser to run the test on. If this capability is provided then the driver will try to start the test in Web context mode (Native mode is applied by default). Read [Automating hybrid apps](https://appium.io/docs/en/writing-running-appium/web/hybrid/) for more details. Usually equals to `safari`.
`appium:includeDeviceCapsToSessionInfo` | Whether to include screen information as the result of [Get Session Capabilities](http://appium.io/docs/en/commands/session/get/). It includes `pixelRatio`, `statBarHeight` and `viewportRect`, but it causes an extra API call to WDA which may increase the response time like [this issue](https://github.com/appium/appium/issues/15101). Defaults to `true`. **This capability has no effect since driver version 5**
Expand All @@ -25,7 +25,7 @@ Capability | Description
--- | ---
`appium:bundleId` | Bundle identifier of the app under test, for example `com.mycompany.myapp`. The capability value is calculated automatically if `app` is provided. If neither `app` or `bundleId` capability is provided then XCUITest driver starts from the Home screen.
`appium:app` | Full path to the application to be tested (the app must be located on the same machine where the server is running). `.ipa` and `.app` application extensions are supported. Zipped `.app` bundles are supported as well. Could also be an URL to a remote location. If neither of the `app` or `bundleId` capabilities are provided then the driver starts from the Home screen and expects the test to know what to do next. Do not provide both `app` and `browserName` capabilities at once.
`appium:enforceAppInstall` | If set to `false` it will make xcuitest driver to verify whether the app version currently installed on the device under test is older than the one, which is provided as `appium:app` value. No app reinstall is going to happen if the candidate app has the same or older version number than the already installed copy of it. The version number used for comparison must be provided as [CFBundleVersion](https://developer.apple.com/documentation/bundleresources/information_property_list/cfbundleversion) [Semantic Versioning](https://semver.org/)-compatible value in the application's Info.plist. No validation is performed by default, e.g. the provided app is always (re)installed, which could potentially slow down your test suites. Available since XCUITest driver 4.19.0. | false
`appium:enforceAppInstall` | If set to `false` it will make xcuitest driver to verify whether the app version currently installed on the device under test is older than the one, which is provided as `appium:app` value. No app reinstall is going to happen if the candidate app has the same or older version number than the already installed copy of it. The version number used for comparison must be provided as [CFBundleVersion](https://developer.apple.com/documentation/bundleresources/information_property_list/cfbundleversion) [Semantic Versioning](https://semver.org/)-compatible value in the application's Info.plist. No validation is performed by default, e.g. the provided app is always (re)installed, which could potentially slow down your test suites. The application data would remain for real devices when `appium:enforceAppInstall` is `true` if the application under test remained on the device under a certain situation. Please check [troubleshooting](troubleshooting.md#clear-the-application-local-data-explicitly-for-real-devices) for more details regarding obsolete application data cleanup on real devices. Available since XCUITest driver 4.19.0. | false
`appium:localizableStringsDir` | Where to look for localizable strings in the application bundle. Defaults to `en.lproj`
`appium:otherApps` | App or list of apps (as a JSON array) to install prior to running tests. For example: `["http://appium.github.io/appium/assets/TestApp9.4.app.zip", "/path/to/app-b.app"]`
`appium:language` | Language to set for iOS app, for example `fr`. Please read [Language IDs](https://developer.apple.com/library/archive/documentation/MacOSX/Conceptual/BPInternational/LanguageandLocaleIDs/LanguageandLocaleIDs.html) to get more details about available values for this capability. If a test is executed on a Simulator then UI language is changed as well. You can also change Simulator language in runtime using [mobile: configureLocalization](#mobile-configurelocalization) extension.
Expand Down
5 changes: 5 additions & 0 deletions docs/execute-methods.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ strategy | string | no | One of possible app installation strategies on real dev
### mobile: isAppInstalled

Checks whether the given application is installed on the device under test.
An [offload application]((https://discussions.apple.com/thread/254887240)) could be handled as not installed.

#### Arguments

Expand All @@ -123,6 +124,9 @@ Either `true` or `false`

Removes the given application from the device under test.

An [offload application]((https://discussions.apple.com/thread/254887240)) also can be removed.
Please check [Clear the application local data explicitly for real devices](troubleshooting.md#clear-the-application-local-data-explicitly-for-real-devices) to ensure how to clear the application local data.
KazuCocoa marked this conversation as resolved.
Show resolved Hide resolved

#### Arguments

Name | Type | Required | Description | Example
Expand Down Expand Up @@ -205,6 +209,7 @@ bundleId | string | yes | The bundle identifier of the application to be activat

List applications installed on the real device under test. This extension throws an error if called
for a Simulator device.
Offload applications will not be in the result.

#### Arguments

Expand Down
20 changes: 20 additions & 0 deletions docs/troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,26 @@ title: Troubleshooting
- This configuration is only necessary for XCUITest driver v4.3.0 or lower.
* `shake` is implemented via AppleScript and works only on Simulator due to lack of support from Apple


## Clear the application local data explicitly for real devices

There might be a situation where application data is present on the real device although application itself is not installed. This could happen if:
- The app is in [offload state](https://discussions.apple.com/thread/254887240)
- The application state is cached
- There was an unexpected failure while installing the app. An example of such failure is the `ApplicationVerificationFailed` which happens while installing an app signed with an invalid provisioning profile.

Under the circumstances above the application identifier won't be listed in the [`mobile: listApps`](execute-methods.md#mobile-listapps) output neither deleted by [`mobile: isAppInstalled`](execute-methods.md#mobile-isappinstalled) command. Setting `appium:fullReset` or `appium:enforceAppInstall` capabilities to `true` won't help to clear this data too.

The only way to completely get rid of the cached application data is to call the [`mobile: removeApp`](execute-methods.md#mobile-removeapp) command with the appropriate bundle identifier.

The driver automatically tries to resolve application installs that failed because of `MismatchedApplicationIdentifierEntitlement`, although, if you explicitly ask it to not perform the application uninstall then consider calling [`mobile: removeApp`](execute-methods.md#mobile-removeapp) beforehand `MismatchedApplicationIdentifierEntitlement` error occurs only when the previously installed application's provisioning profile is different from what currently the driver is trying to install.

An example to start a session with explicit application uninstallation to clear the local data.
KazuCocoa marked this conversation as resolved.
Show resolved Hide resolved
1. Start a session without `appium:app` nor `appium:bundleId`
KazuCocoa marked this conversation as resolved.
Show resolved Hide resolved
2. Call [`mobile: removeApp`](execute-methods.md#mobile-removeapp) for the target application's bundle id
3. Install the test target with [`mobile: installApp`](execute-methods.md#mobile-installapp)
4. Launch the application with [`mobile: launchApp`](execute-methods.md#mobile-launchapp) or [`mobile: activateApp`](execute-methods.md#mobile-activateapp)

## Weird state

### stop responding
Expand Down
2 changes: 2 additions & 0 deletions lib/commands/app-management.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ export default {
},
/**
* Checks whether the given application is installed on the device under test.
* Offload app is handled as not installed.
*
* @param {string} bundleId - The bundle identifier of the application to be checked
* @returns {Promise<boolean>} `true` if the application is installed; `false` otherwise
Expand All @@ -52,6 +53,7 @@ export default {
},
/**
* Removes/uninstalls the given application from the device under test.
* Offload app also can be removed.
KazuCocoa marked this conversation as resolved.
Show resolved Hide resolved
*
* @param {string} bundleId - The bundle identifier of the application to be removed
* @returns {Promise<boolean>} `true` if the application has been removed successfully; `false` otherwise
Expand Down
5 changes: 3 additions & 2 deletions lib/driver.js
Original file line number Diff line number Diff line change
Expand Up @@ -1610,7 +1610,8 @@ class XCUITestDriver extends BaseDriver {
};
}
} else {
this.log.info(`App '${bundleId}' is not installed on the device yet`);
this.log.info(`App '${bundleId}' is not installed yet or it has an offload, ` +
KazuCocoa marked this conversation as resolved.
Show resolved Hide resolved
'which might keep the local data, cannot be detected.');
}
if (enforceAppInstall !== false || fullReset || !wasAppInstalled) {
return {
Expand Down Expand Up @@ -1688,7 +1689,7 @@ class XCUITestDriver extends BaseDriver {
await installToRealDevice(this.opts.device, this.opts.app, this.opts.bundleId, {
skipUninstall,
timeout: this.opts.appPushTimeout,
strategy: this.opts.appInstallStrategy,
strategy: this.opts.appInstallStrategy
});
} else {
// @ts-expect-error - do not assign arbitrary properties to `this.opts`
Expand Down
39 changes: 33 additions & 6 deletions lib/real-device-management.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ async function runRealDeviceReset(device, opts) {
* @property {boolean} [skipUninstall] Whether to skip app uninstall before installing it
* @property {'serial'|'parallel'|'ios-deploy'} [strategy='serial'] One of possible install strategies ('serial', 'parallel', 'ios-deploy')
* @property {number} [timeout] App install timeout
* @property {boolean} [shouldEnforceUninstall] Whether to enforce the app uninstallation. e.g. fullReset, or enforceAppInstall is true
*/

/**
Expand All @@ -67,20 +68,46 @@ async function runRealDeviceReset(device, opts) {
* @param {InstallOptions} [opts]
*/
async function installToRealDevice(device, app, bundleId, opts) {
if (!device.udid || !app) {
log.debug('No device id or app, not installing to real device.');
if (!device.udid || !app || !bundleId) {
KazuCocoa marked this conversation as resolved.
Show resolved Hide resolved
log.debug('No device id, app or bundle id, not installing to real device.');
return;
}

const {skipUninstall, strategy, timeout} = opts ?? {};
const shouldUninstallApp = !skipUninstall && bundleId;
KazuCocoa marked this conversation as resolved.
Show resolved Hide resolved

if (!skipUninstall && bundleId && (await device.isAppInstalled(bundleId))) {
KazuCocoa marked this conversation as resolved.
Show resolved Hide resolved
log.debug(`Reset requested. Removing app with id '${bundleId}' from the device`);
if (shouldUninstallApp) {
log.info(`Reset requested. Removing app with id '${bundleId}' from the device`);
await device.remove(bundleId);
}
KazuCocoa marked this conversation as resolved.
Show resolved Hide resolved
log.debug(`Installing '${app}' on device with UUID '${device.udid}'...`);
await device.install(app, timeout, strategy);
log.debug('The app has been installed successfully.');

try {
await device.install(app, timeout, strategy);
log.debug('The app has been installed successfully.');
} catch (e) {
// Want to clarify the device's application installation state in this situation.

// If the error was by below error case, we could recover the situation
// by uninstalling the device's app bundle id explicitly regard less the app exists on the device or not (e.g. offload app).
// [XCUITest] Error installing app '/path/to.app': Unexpected data: {"Error":"MismatchedApplicationIdentifierEntitlement","ErrorDescription":"Upgrade's application-identifier entitlement string (TEAM_ID.com.kazucocoa.example) does not match installed application's application-identifier string (ANOTHER_TEAM_ID.com.kazucocoa.example); rejecting upgrade."}
if (!shouldUninstallApp && e.message.includes('MismatchedApplicationIdentifierEntitlement')) {
log.info(`The application identified by '{bundleId}' cannot be installed because it might ` +
KazuCocoa marked this conversation as resolved.
Show resolved Hide resolved
`be already cached on the device, probably with a different signature by some reasons. ` +
KazuCocoa marked this conversation as resolved.
Show resolved Hide resolved
`Will try to remove it and install a new copy. Original error: ${e.message}`);
await device.remove(bundleId);
await device.install(app, timeout, strategy);
log.debug('The app has been installed after one retrial.');
return;
}

// Other error cases that could not be recoverable by here.
// Exact error will be in the log.

// We cannot recover 'ApplicationVerificationFailed' situation since this reason is clearly the app's provisioning profile was invalid.
// [XCUITest] Error installing app '/path/to.app': Unexpected data: {"Error":"ApplicationVerificationFailed","ErrorDetail":-402620395,"ErrorDescription":"Failed to verify code signature of /path/to.app : 0xe8008015 (A valid provisioning profile for this executable was not found.)"}
throw e;
KazuCocoa marked this conversation as resolved.
Show resolved Hide resolved
}
}

function getRealDeviceObj(udid) {
Expand Down
102 changes: 102 additions & 0 deletions test/unit/real-device-management-specs.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@
import chai from 'chai';
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

import chaiAsPromised from 'chai-as-promised';
import {createSandbox} from 'sinon';
import sinonChai from 'sinon-chai';
import { installToRealDevice } from '../../lib/real-device-management';
import IOSDeploy from '../../lib/ios-deploy';

chai.should();
chai.use(sinonChai).use(chaiAsPromised);

const expect = chai.expect;

describe('installToRealDevice', function () {
const udid = 'test-udid';
const app = '/path/to.app';
const bundleId = 'test.bundle.id';

/** @type {sinon.SinonSandbox} */
let sandbox;
beforeEach(function () {
sandbox = createSandbox();
});

afterEach(function () {
sandbox.restore();
});

it('should install without remove', async function () {
const opts = {
skipUninstall: true
};
const iosDeploy = new IOSDeploy(udid);
sandbox.stub(iosDeploy, 'remove').resolves();
sandbox.stub(iosDeploy, 'install').resolves();

await installToRealDevice(iosDeploy, app, bundleId, opts);

expect(iosDeploy.remove).to.not.have.been.called;
expect(iosDeploy.install).to.have.been.calledOnce;
});

it('should install after remove', async function () {
const opts = {
skipUninstall: false
};
const iosDeploy = new IOSDeploy(udid);
sandbox.stub(iosDeploy, 'remove').resolves();
sandbox.stub(iosDeploy, 'install').resolves();

await installToRealDevice(iosDeploy, app, bundleId, opts);

expect(iosDeploy.remove).to.have.been.calledOnce;
expect(iosDeploy.install).to.have.been.calledOnce;
});

it('should raise an error for invalid verification error after uninstall', async function () {
const opts = {
skipUninstall: false
};
const err_msg = `{"Error":"ApplicationVerificationFailed","ErrorDetail":-402620395,"ErrorDescription":"Failed to verify code signature of /path/to.app : 0xe8008015 (A valid provisioning profile for this executable was not found.)"}`;
const iosDeploy = new IOSDeploy(udid);
sandbox.stub(iosDeploy, 'remove').resolves();
sandbox.stub(iosDeploy, 'install').throws(err_msg);

await installToRealDevice(iosDeploy, app, bundleId, opts).should.be.rejectedWith('ApplicationVerificationFailed');
expect(iosDeploy.remove).to.have.been.calledOnce;
expect(iosDeploy.install).to.have.been.calledOnce;
});

it('should install after removal once because of MismatchedApplicationIdentifierEntitlement error', async function () {
// This situation could happen when the app exists as offload, or cached state
// with different application identifier
const opts = {
skipUninstall: true
};
const iosDeploy = new IOSDeploy(udid);
sandbox.stub(iosDeploy, 'remove').resolves();
sandbox.stub(iosDeploy, 'install')
.onCall(0).throws(`{"Error":"MismatchedApplicationIdentifierEntitlement","ErrorDescription":"Upgrade's application-identifier entitlement string (TEAM_ID.com.kazucocoa.example) does not match installed application's application-identifier string (ANOTHER_TEAM_ID.com.kazucocoa.example); rejecting upgrade."}`)
.onCall(1).resolves();

await installToRealDevice(iosDeploy, app, bundleId, opts);

expect(iosDeploy.remove).to.have.been.calledOnce;
expect(iosDeploy.install).to.have.been.calledTwice;
});

it('should raise an error in the install ApplicationVerificationFailed error because it is not recoverable', async function () {
const opts = {
skipUninstall: true
};
const err_msg = `{"Error":"ApplicationVerificationFailed","ErrorDetail":-402620395,"ErrorDescription":"Failed to verify code signature of /path/to.app : 0xe8008015 (A valid provisioning profile for this executable was not found.)"}`;
const iosDeploy = new IOSDeploy(udid);
sandbox.stub(iosDeploy, 'remove').resolves();
sandbox.stub(iosDeploy, 'install').throws(err_msg);
sandbox.stub(iosDeploy, 'isAppInstalled').resolves(true);

await installToRealDevice(iosDeploy, app, bundleId, opts).should.be.rejectedWith('ApplicationVerificationFailed');
expect(iosDeploy.remove).to.not.have.been.called;
expect(iosDeploy.install).to.have.been.calledOnce;
});
});
Loading