blob: e72c5dec4c7c79bec08ca4d1bbf277b10e497edc [file] [log] [blame]
/*
* Copyright 2016 The Bazel Authors. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.idea.blaze.android.run.binary;
import static com.google.common.truth.Truth.assertThat;
import com.google.common.collect.ImmutableList;
import com.google.idea.blaze.android.AndroidIntegrationTestSetupRule;
import com.google.idea.blaze.android.cppapi.NdkSupport;
import com.google.idea.blaze.android.run.BlazeAndroidRunConfigurationCommonState;
import com.google.idea.blaze.base.BlazeIntegrationTestCase;
import com.google.idea.blaze.base.run.state.RunConfigurationStateEditor;
import com.google.idea.common.experiments.ExperimentService;
import com.google.idea.common.experiments.MockExperimentService;
import com.intellij.openapi.options.ConfigurationException;
import com.intellij.openapi.util.InvalidDataException;
import com.intellij.openapi.util.WriteExternalException;
import org.jdom.Element;
import org.jdom.output.Format;
import org.jdom.output.XMLOutputter;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
/** Tests for {@link BlazeAndroidBinaryRunConfigurationState}. */
@RunWith(JUnit4.class)
public class BlazeAndroidBinaryRunConfigurationStateTest extends BlazeIntegrationTestCase {
@Rule
public final AndroidIntegrationTestSetupRule androidSetupRule =
new AndroidIntegrationTestSetupRule();
private BlazeAndroidBinaryRunConfigurationState state;
@Before
public final void doSetup() {
MockExperimentService experimentService = new MockExperimentService();
registerApplicationComponent(ExperimentService.class, experimentService);
// BlazeAndroidRunConfigurationCommonState.isNativeDebuggingEnabled() always
// returns false if this experiment is false.
experimentService.setExperiment(NdkSupport.NDK_SUPPORT, true);
state = new BlazeAndroidBinaryRunConfigurationState(buildSystem().getName());
}
@Test
public void readAndWriteShouldMatch() throws InvalidDataException, WriteExternalException {
BlazeAndroidRunConfigurationCommonState commonState = state.getCommonState();
commonState.getBlazeFlagsState().setRawFlags(ImmutableList.of("--flag1", "--flag2"));
commonState.setNativeDebuggingEnabled(true);
state.setActivityClass("com.example.TestActivity");
state.setMode(BlazeAndroidBinaryRunConfigurationState.LAUNCH_SPECIFIC_ACTIVITY);
state.setMobileInstall(true);
state.setUseSplitApksIfPossible(false);
state.setUseWorkProfileIfPresent(true);
state.setUserId(2);
state.setDeepLink("http://deeplink");
Element element = new Element("test");
state.writeExternal(element);
BlazeAndroidBinaryRunConfigurationState readState =
new BlazeAndroidBinaryRunConfigurationState(buildSystem().getName());
readState.readExternal(element);
BlazeAndroidRunConfigurationCommonState readCommonState = readState.getCommonState();
assertThat(readCommonState.getBlazeFlagsState().getRawFlags())
.containsExactly("--flag1", "--flag2")
.inOrder();
assertThat(readCommonState.isNativeDebuggingEnabled()).isTrue();
assertThat(readState.getActivityClass()).isEqualTo("com.example.TestActivity");
assertThat(readState.getMode())
.isEqualTo(BlazeAndroidBinaryRunConfigurationState.LAUNCH_SPECIFIC_ACTIVITY);
assertThat(readState.mobileInstall()).isTrue();
assertThat(readState.useSplitApksIfPossible()).isFalse();
assertThat(readState.useWorkProfileIfPresent()).isTrue();
assertThat(readState.getUserId()).isEqualTo(2);
assertThat(readState.getDeepLink()).isEqualTo("http://deeplink");
}
@Test
public void readAndWriteShouldHandleNulls() throws InvalidDataException, WriteExternalException {
Element element = new Element("test");
state.writeExternal(element);
BlazeAndroidBinaryRunConfigurationState readState =
new BlazeAndroidBinaryRunConfigurationState(buildSystem().getName());
readState.readExternal(element);
BlazeAndroidRunConfigurationCommonState commonState = state.getCommonState();
BlazeAndroidRunConfigurationCommonState readCommonState = readState.getCommonState();
assertThat(readCommonState.getBlazeFlagsState().getRawFlags())
.isEqualTo(commonState.getBlazeFlagsState().getRawFlags());
assertThat(readCommonState.isNativeDebuggingEnabled())
.isEqualTo(commonState.isNativeDebuggingEnabled());
assertThat(readState.getActivityClass()).isEqualTo(state.getActivityClass());
assertThat(readState.getMode()).isEqualTo(state.getMode());
assertThat(readState.mobileInstall()).isEqualTo(state.mobileInstall());
assertThat(readState.useSplitApksIfPossible()).isEqualTo(state.useSplitApksIfPossible());
assertThat(readState.useWorkProfileIfPresent()).isEqualTo(state.useWorkProfileIfPresent());
assertThat(readState.getUserId()).isEqualTo(state.getUserId());
assertThat(readState.getDeepLink()).isEqualTo(state.getDeepLink());
}
@Test
public void repeatedWriteShouldNotChangeElement() throws WriteExternalException {
final XMLOutputter xmlOutputter = new XMLOutputter(Format.getCompactFormat());
BlazeAndroidRunConfigurationCommonState commonState = state.getCommonState();
commonState.getBlazeFlagsState().setRawFlags(ImmutableList.of("--flag1", "--flag2"));
commonState.setNativeDebuggingEnabled(true);
state.setActivityClass("com.example.TestActivity");
state.setMode(BlazeAndroidBinaryRunConfigurationState.LAUNCH_SPECIFIC_ACTIVITY);
state.setMobileInstall(true);
state.setUseSplitApksIfPossible(false);
state.setUseWorkProfileIfPresent(true);
state.setUserId(2);
state.setDeepLink("http://deeplink");
Element firstWrite = new Element("test");
state.writeExternal(firstWrite);
Element secondWrite = firstWrite.clone();
state.writeExternal(secondWrite);
assertThat(xmlOutputter.outputString(secondWrite))
.isEqualTo(xmlOutputter.outputString(firstWrite));
}
@Test
public void editorApplyToAndResetFromShouldMatch() throws ConfigurationException {
RunConfigurationStateEditor editor = state.getEditor(getProject());
BlazeAndroidRunConfigurationCommonState commonState = state.getCommonState();
commonState.getBlazeFlagsState().setRawFlags(ImmutableList.of("--flag1", "--flag2"));
commonState.setNativeDebuggingEnabled(true);
state.setActivityClass("com.example.TestActivity");
state.setMode(BlazeAndroidBinaryRunConfigurationState.LAUNCH_SPECIFIC_ACTIVITY);
state.setMobileInstall(true);
state.setUseSplitApksIfPossible(false);
state.setUseWorkProfileIfPresent(true);
state.setUserId(2);
// We don't test DeepLink because it is not exposed in the editor.
//state.setDeepLink("http://deeplink");
editor.resetEditorFrom(state);
BlazeAndroidBinaryRunConfigurationState readState =
new BlazeAndroidBinaryRunConfigurationState(buildSystem().getName());
editor.applyEditorTo(readState);
BlazeAndroidRunConfigurationCommonState readCommonState = readState.getCommonState();
assertThat(readCommonState.getBlazeFlagsState().getRawFlags())
.isEqualTo(commonState.getBlazeFlagsState().getRawFlags());
assertThat(readCommonState.isNativeDebuggingEnabled())
.isEqualTo(commonState.isNativeDebuggingEnabled());
assertThat(readState.getActivityClass()).isEqualTo(state.getActivityClass());
assertThat(readState.getMode()).isEqualTo(state.getMode());
assertThat(readState.mobileInstall()).isEqualTo(state.mobileInstall());
assertThat(readState.useSplitApksIfPossible()).isEqualTo(state.useSplitApksIfPossible());
assertThat(readState.useWorkProfileIfPresent()).isEqualTo(state.useWorkProfileIfPresent());
assertThat(readState.getUserId()).isEqualTo(state.getUserId());
// We don't test DeepLink because it is not exposed in the editor.
//assertThat(readState.getDeepLink()).isEqualTo(state.getDeepLink());
}
@Test
public void editorApplyToAndResetFromShouldHandleNulls() throws ConfigurationException {
RunConfigurationStateEditor editor = state.getEditor(getProject());
editor.resetEditorFrom(state);
BlazeAndroidBinaryRunConfigurationState readState =
new BlazeAndroidBinaryRunConfigurationState(buildSystem().getName());
editor.applyEditorTo(readState);
BlazeAndroidRunConfigurationCommonState commonState = state.getCommonState();
BlazeAndroidRunConfigurationCommonState readCommonState = readState.getCommonState();
assertThat(readCommonState.getBlazeFlagsState().getRawFlags())
.isEqualTo(commonState.getBlazeFlagsState().getRawFlags());
assertThat(readCommonState.isNativeDebuggingEnabled())
.isEqualTo(commonState.isNativeDebuggingEnabled());
assertThat(readState.getActivityClass()).isEqualTo(state.getActivityClass());
assertThat(readState.getMode()).isEqualTo(state.getMode());
assertThat(readState.mobileInstall()).isEqualTo(state.mobileInstall());
assertThat(readState.useSplitApksIfPossible()).isEqualTo(state.useSplitApksIfPossible());
assertThat(readState.useWorkProfileIfPresent()).isEqualTo(state.useWorkProfileIfPresent());
assertThat(readState.getUserId()).isEqualTo(state.getUserId());
// We don't test DeepLink because it is not exposed in the editor.
//assertThat(readState.getDeepLink()).isEqualTo(state.getDeepLink());
}
}