|
35 | 35 | import org.eclipse.core.resources.IBuildConfiguration;
|
36 | 36 | import org.eclipse.core.resources.IProject;
|
37 | 37 | import org.eclipse.core.resources.IProjectDescription;
|
| 38 | +import org.eclipse.debug.core.ILaunchManager; |
38 | 39 | import org.eclipse.launchbar.core.target.ILaunchTarget;
|
39 | 40 | import org.eclipse.launchbar.core.target.ILaunchTargetManager;
|
40 | 41 | import org.junit.jupiter.api.BeforeEach;
|
@@ -91,6 +92,106 @@ public ICMakeProperties getCMakeProperties() {
|
91 | 92 | assertThat(cMakeProperties.getGenerator(), is(CMakeGenerator.WatcomWMake));
|
92 | 93 | }
|
93 | 94 |
|
| 95 | + /** |
| 96 | + * Test for IDE_82683_REQ_013 part of #1000 |
| 97 | + * <br> |
| 98 | + * Testing {@link ICMakeProperties#getBuildType()} <br> |
| 99 | + * <br> |
| 100 | + * This test verify default build type is used in case: |
| 101 | + * {@link ICMakeBuildConfiguration#CMAKE_USE_DEFAULT_CMAKE_SETTINGS} is <code>true<code> |
| 102 | + */ |
| 103 | + @Test |
| 104 | + public void getCMakePropertiesTestGetDefaultBuildType() { |
| 105 | + // CMAKE_USE_DEFAULT_CMAKE_SETTINGS = "true" |
| 106 | + CMakeBuildConfiguration cmBuildConfig; |
| 107 | + ICMakeProperties cMakeProperties; |
| 108 | + // Test for ILaunchManager.RUN_MODE |
| 109 | + cmBuildConfig = new CMakeBuildConfiguration(buildConfig, "cmBuildConfigName", mockToolchain, null, |
| 110 | + ILaunchManager.RUN_MODE, LOCAL_LAUNCH_TARGET); |
| 111 | + cMakeProperties = cmBuildConfig.getCMakeProperties(); |
| 112 | + assertThat(cMakeProperties.getBuildType(), is("Release")); |
| 113 | + |
| 114 | + // Test for ILaunchManager.DEBUG_MODE |
| 115 | + cmBuildConfig = new CMakeBuildConfiguration(buildConfig, "cmBuildConfigName", mockToolchain, null, |
| 116 | + ILaunchManager.DEBUG_MODE, LOCAL_LAUNCH_TARGET); |
| 117 | + cMakeProperties = cmBuildConfig.getCMakeProperties(); |
| 118 | + assertThat(cMakeProperties.getBuildType(), is("Debug")); |
| 119 | + |
| 120 | + // Test for ILaunchManager.PROFILE_MODE |
| 121 | + cmBuildConfig = new CMakeBuildConfiguration(buildConfig, "cmBuildConfigName", mockToolchain, null, |
| 122 | + ILaunchManager.PROFILE_MODE, LOCAL_LAUNCH_TARGET); |
| 123 | + cMakeProperties = cmBuildConfig.getCMakeProperties(); |
| 124 | + assertThat(cMakeProperties.getBuildType(), is("Release")); |
| 125 | + } |
| 126 | + |
| 127 | + /** |
| 128 | + * Test for IDE_82683_REQ_013 part of #1000 |
| 129 | + * <br> |
| 130 | + * This test verify default build type is used in case: |
| 131 | + * {@link ICMakeBuildConfiguration#CMAKE_USE_DEFAULT_CMAKE_SETTINGS} is <code>true<code> |
| 132 | + */ |
| 133 | + @Test |
| 134 | + public void getCMakePropertiesLoadISVSelectBuildType_UseDefaultBuildType_1() { |
| 135 | + ICMakeProperties cMakeProperties; |
| 136 | + CMakeBuildConfiguration cmBuildConfig = new CMakeBuildConfiguration(buildConfig, "cmBuildConfigName", |
| 137 | + mockToolchain, null, ILaunchManager.RUN_MODE, LOCAL_LAUNCH_TARGET); |
| 138 | + // Setup ISV properties for CMakeBuildConfiguration |
| 139 | + // CMAKE_USE_DEFAULT_CMAKE_SETTINGS = "true" |
| 140 | + // CMAKE_BUILD_TYPE = "RelWithDebInfo" |
| 141 | + cmBuildConfig.removeProperty(CMakeBuildConfiguration.CMAKE_BUILD_TYPE); |
| 142 | + cmBuildConfig.setProperty(CMakeBuildConfiguration.CMAKE_USE_DEFAULT_CMAKE_SETTINGS, "true"); |
| 143 | + cmBuildConfig.setProperty(CMakeBuildConfiguration.CMAKE_BUILD_TYPE, "RelWithDebInfo"); |
| 144 | + // Expected: default build type is used (in this case: "Release" for ILaunchManager.RUN_MODE) |
| 145 | + cMakeProperties = cmBuildConfig.getCMakeProperties(); |
| 146 | + assertThat(cMakeProperties.getBuildType(), is("Release")); |
| 147 | + } |
| 148 | + |
| 149 | + /** |
| 150 | + * Test for IDE_82683_REQ_013 part of #1000 |
| 151 | + * <br> |
| 152 | + * This test verify default build type is used in case ISV build type is blank: |
| 153 | + * {@link ICMakeBuildConfiguration#CMAKE_USE_DEFAULT_CMAKE_SETTINGS} is <code>false<code> and |
| 154 | + * {@link ICMakeBuildConfiguration#CMAKE_BUILD_TYPE} is blank |
| 155 | + */ |
| 156 | + @Test |
| 157 | + public void getCMakePropertiesLoadISVSelectBuildType_ISVBuildTypeIsBlank() { |
| 158 | + ICMakeProperties cMakeProperties; |
| 159 | + CMakeBuildConfiguration cmBuildConfig = new CMakeBuildConfiguration(buildConfig, "cmBuildConfigName", |
| 160 | + mockToolchain, null, ILaunchManager.RUN_MODE, LOCAL_LAUNCH_TARGET); |
| 161 | + // Setup ISV properties for CMakeBuildConfiguration |
| 162 | + // CMAKE_USE_DEFAULT_CMAKE_SETTINGS = "false" |
| 163 | + // CMAKE_BUILD_TYPE = "" |
| 164 | + cmBuildConfig.removeProperty(CMakeBuildConfiguration.CMAKE_BUILD_TYPE); |
| 165 | + cmBuildConfig.setProperty(CMakeBuildConfiguration.CMAKE_USE_DEFAULT_CMAKE_SETTINGS, "false"); |
| 166 | + cmBuildConfig.setProperty(CMakeBuildConfiguration.CMAKE_BUILD_TYPE, ""); |
| 167 | + // Expected: "Release" build type is used (in this case: "Release" for ILaunchManager.RUN_MODE) |
| 168 | + cMakeProperties = cmBuildConfig.getCMakeProperties(); |
| 169 | + assertThat(cMakeProperties.getBuildType(), is("Release")); |
| 170 | + } |
| 171 | + |
| 172 | + /** |
| 173 | + * Test for IDE_82683_REQ_013 part of #1000 |
| 174 | + * <br> |
| 175 | + * This test verify ISV's selected build type is used in case: |
| 176 | + * {@link ICMakeBuildConfiguration#CMAKE_USE_DEFAULT_CMAKE_SETTINGS} is <code>false<code> and |
| 177 | + * {@link ICMakeBuildConfiguration#CMAKE_BUILD_TYPE} is NOT blank |
| 178 | + */ |
| 179 | + @Test |
| 180 | + public void getCMakePropertiesLoadISVSelectBuildType_UseISVBuildTypeNotBlank() { |
| 181 | + ICMakeProperties cMakeProperties; |
| 182 | + CMakeBuildConfiguration cmBuildConfig = new CMakeBuildConfiguration(buildConfig, "cmBuildConfigName", |
| 183 | + mockToolchain, null, ILaunchManager.RUN_MODE, LOCAL_LAUNCH_TARGET); |
| 184 | + // Setup ISV properties for CMakeBuildConfiguration |
| 185 | + // CMAKE_USE_DEFAULT_CMAKE_SETTINGS = "false" |
| 186 | + // CMAKE_BUILD_TYPE = "RelWithDebInfo" |
| 187 | + cmBuildConfig.removeProperty(CMakeBuildConfiguration.CMAKE_BUILD_TYPE); |
| 188 | + cmBuildConfig.setProperty(CMakeBuildConfiguration.CMAKE_USE_DEFAULT_CMAKE_SETTINGS, "false"); |
| 189 | + cmBuildConfig.setProperty(CMakeBuildConfiguration.CMAKE_BUILD_TYPE, "RelWithDebInfo"); |
| 190 | + // Expected: "RelWithDebInfo" build type is used |
| 191 | + cMakeProperties = cmBuildConfig.getCMakeProperties(); |
| 192 | + assertThat(cMakeProperties.getBuildType(), is("RelWithDebInfo")); |
| 193 | + } |
| 194 | + |
94 | 195 | /**
|
95 | 196 | * Test for {@link ICMakeProperties#setExtraArguments()}
|
96 | 197 | *
|
|
0 commit comments