Enum googapis::google::devtools::testing::v1::InvalidMatrixDetails[][src]

#[repr(i32)]
pub enum InvalidMatrixDetails {
Show 35 variants Unspecified, DetailsUnavailable, MalformedApk, MalformedTestApk, NoManifest, NoPackageName, InvalidPackageName, TestSameAsApp, NoInstrumentation, NoSignature, InstrumentationOrchestratorIncompatible, NoTestRunnerClass, NoLauncherActivity, ForbiddenPermissions, InvalidRoboDirectives, InvalidResourceName, InvalidDirectiveAction, TestLoopIntentFilterNotFound, ScenarioLabelNotDeclared, ScenarioLabelMalformed, ScenarioNotDeclared, DeviceAdminReceiver, MalformedXcTestZip, BuiltForIosSimulator, NoTestsInXcTestZip, UseDestinationArtifacts, TestNotAppHosted, PlistCannotBeParsed, TestOnlyApk, MalformedIpa, MissingUrlScheme, MalformedAppBundle, NoCodeApk, InvalidInputApk, InvalidApkPreviewSdk,
}
Expand description

The detailed reason that a Matrix was deemed INVALID.

Variants

Unspecified

Do not use. For proto versioning only.

DetailsUnavailable

The matrix is INVALID, but there are no further details available.

MalformedApk

The input app APK could not be parsed.

MalformedTestApk

The input test APK could not be parsed.

NoManifest

The AndroidManifest.xml could not be found.

NoPackageName

The APK manifest does not declare a package name.

InvalidPackageName

The APK application ID (aka package name) is invalid. See also https://developer.android.com/studio/build/application-id

TestSameAsApp

The test package and app package are the same.

NoInstrumentation

The test apk does not declare an instrumentation.

NoSignature

The input app apk does not have a signature.

InstrumentationOrchestratorIncompatible

The test runner class specified by user or in the test APK’s manifest file is not compatible with Android Test Orchestrator. Orchestrator is only compatible with AndroidJUnitRunner version 1.0 or higher. Orchestrator can be disabled by using DO_NOT_USE_ORCHESTRATOR OrchestratorOption.

NoTestRunnerClass

The test APK does not contain the test runner class specified by user or in the manifest file. This can be caused by either of the following reasons:

NoLauncherActivity

A main launcher activity could not be found.

ForbiddenPermissions

The app declares one or more permissions that are not allowed.

InvalidRoboDirectives

There is a conflict in the provided robo_directives.

InvalidResourceName

There is at least one invalid resource name in the provided robo directives

InvalidDirectiveAction

Invalid definition of action in the robo directives (e.g. a click or ignore action includes an input text field)

TestLoopIntentFilterNotFound

There is no test loop intent filter, or the one that is given is not formatted correctly.

ScenarioLabelNotDeclared

The request contains a scenario label that was not declared in the manifest.

ScenarioLabelMalformed

There was an error when parsing a label’s value.

ScenarioNotDeclared

The request contains a scenario number that was not declared in the manifest.

DeviceAdminReceiver

Device administrator applications are not allowed.

MalformedXcTestZip

The zipped XCTest was malformed. The zip did not contain a single .xctestrun file and the contents of the DerivedData/Build/Products directory.

BuiltForIosSimulator

The zipped XCTest was built for the iOS simulator rather than for a physical device.

NoTestsInXcTestZip

The .xctestrun file did not specify any test targets.

UseDestinationArtifacts

One or more of the test targets defined in the .xctestrun file specifies “UseDestinationArtifacts”, which is disallowed.

TestNotAppHosted

XC tests which run on physical devices must have “IsAppHostedTestBundle” == “true” in the xctestrun file.

PlistCannotBeParsed

An Info.plist file in the XCTest zip could not be parsed.

TestOnlyApk

The APK is marked as “testOnly”. Deprecated and not currently used.

MalformedIpa

The input IPA could not be parsed.

MissingUrlScheme

The application doesn’t register the game loop URL scheme.

MalformedAppBundle

The iOS application bundle (.app) couldn’t be processed.

NoCodeApk

APK contains no code. See also https://developer.android.com/guide/topics/manifest/application-element.html#code

InvalidInputApk

Either the provided input APK path was malformed, the APK file does not exist, or the user does not have permission to access the APK file.

InvalidApkPreviewSdk

APK is built for a preview SDK which is unsupported

Implementations

Returns true if value is a variant of InvalidMatrixDetails.

Converts an i32 to a InvalidMatrixDetails, or None if value is not a valid variant.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Performs the conversion.

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. Read more

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

Restrict a value to a certain interval. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Compare self to key and return true if they are equal.

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

Wrap the input message T in a tonic::Request

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more