use of com.intellij.openapi.externalSystem.service.project.IdeModifiableModelsProvider in project android by JetBrains.
the class DependenciesModuleSetupStepTest method testUpdateLibraryDependencyWithLibraryInModule.
public void testUpdateLibraryDependencyWithLibraryInModule() throws IOException {
Module module = getModule();
createContentRoot(module);
VirtualFile moduleFolder = getModuleFolder(module);
// Create "build" folder inside the module.
String name = "build";
VirtualFile buildFolder = createFolder(moduleFolder, name);
AndroidProject androidProject = mock(AndroidProject.class);
when(androidProject.getBuildFolder()).thenReturn(virtualToIoFile(buildFolder));
// Create "jars" folder inside the module's "build" folder.
VirtualFile jarsFolder = createFolder(buildFolder, "jars");
File jarsFolderPath = virtualToIoFile(jarsFolder);
// We simulate the dependency to set up being inside the "jars" folder. We expect the "jars" folder to be excluded to avoid unnecessary
// indexing of the jar files.
LibraryDependency dependency = createFakeLibraryDependency(jarsFolderPath);
IdeModifiableModelsProvider modelsProvider = new IdeModifiableModelsProviderImpl(getProject());
mySetupStep.updateLibraryDependency(module, modelsProvider, dependency, androidProject);
ApplicationManager.getApplication().runWriteAction(modelsProvider::commit);
// Make sure DependenciesSetup#setUpLibraryDependency was invoked.
verify(myDependenciesSetup).setUpLibraryDependency(module, modelsProvider, "myLibrary", COMPILE, dependency.getArtifactPath(), dependency.getPaths(BINARY), dependency.getPaths(DOCUMENTATION));
}
use of com.intellij.openapi.externalSystem.service.project.IdeModifiableModelsProvider in project intellij-community by JetBrains.
the class GradleCompositeImportingTest method testCompositeBuildWithProjectNameDuplicates.
@Test
@TargetVersions("3.3+")
public void testCompositeBuildWithProjectNameDuplicates() throws Exception {
IdeModifiableModelsProvider modelsProvider = new IdeModifiableModelsProviderImpl(myProject);
modelsProvider.newModule(getProjectPath() + "/api.iml", StdModuleTypes.JAVA.getId());
modelsProvider.newModule(getProjectPath() + "/my-app-api.iml", StdModuleTypes.JAVA.getId());
modelsProvider.newModule(getProjectPath() + "/my-app-api_main.iml", StdModuleTypes.JAVA.getId());
edt(() -> ApplicationManager.getApplication().runWriteAction(modelsProvider::commit));
createSettingsFile("rootProject.name='adhoc'\n" + "\n" + "includeBuild '../my-app'\n" + "includeBuild '../my-utils'");
createProjectSubFile("../my-app/settings.gradle", "rootProject.name = 'my-app'\n" + "include 'api'\n");
createProjectSubFile("../my-app/build.gradle", "apply plugin: 'java'\n" + "group 'org.sample'\n" + "version '1.0'\n" + "\n" + "dependencies {\n" + " compile 'org.sample:number-utils:1.0'\n" + " compile 'org.sample:string-utils:1.0'\n" + "}\n" + "project(':api') {\n" + " apply plugin: 'java'\n" + " dependencies {\n" + " compile 'commons-lang:commons-lang:2.6'\n" + " }\n" + "}\n");
createProjectSubFile("../my-utils/settings.gradle", "rootProject.name = 'my-utils'\n" + "include 'number-utils', 'string-utils', 'api'");
createProjectSubFile("../my-utils/build.gradle", "subprojects {\n" + " apply plugin: 'java'\n" + "\n" + " group 'org.sample'\n" + " version '1.0'\n" + "}\n" + "\n" + "project(':string-utils') {\n" + " dependencies {\n" + " compile 'org.apache.commons:commons-lang3:3.4'\n" + " }\n" + "}\n" + "project(':api') {\n" + " dependencies {\n" + " compile 'junit:junit:4.11'\n" + " }\n" + "}");
importProject();
assertModules("adhoc", "api", "api_main", "api_test", "my-app", "my-app_main", "my-app_test", "my-app-api", "my-app-api~1", "my-app-api_main", "my-utils", "string-utils", "string-utils_main", "string-utils_test", "number-utils", "number-utils_main", "number-utils_test", "my-utils-api", "my-utils-api_main", "my-utils-api_test");
String[] emptyModules = new String[] { "api", "adhoc", "my-app", "my-app-api", "my-app-api_main", "my-app-api~1", "my-utils", "my-utils-api", "string-utils", "number-utils" };
for (String rootModule : emptyModules) {
assertModuleLibDeps(rootModule);
assertModuleModuleDeps(rootModule);
}
assertModuleModuleDeps("my-app_main", "number-utils_main", "string-utils_main");
assertModuleModuleDepScope("my-app_main", "number-utils_main", COMPILE);
assertModuleModuleDepScope("my-app_main", "string-utils_main", COMPILE);
assertModuleLibDepScope("my-app_main", "Gradle: org.apache.commons:commons-lang3:3.4", COMPILE);
// my-app api project
assertModuleModuleDeps("api_main");
assertModuleLibDeps("api_main", "Gradle: commons-lang:commons-lang:2.6");
assertModuleLibDepScope("api_main", "Gradle: commons-lang:commons-lang:2.6", COMPILE);
assertModuleModuleDeps("my-utils-api_main");
//assertModuleLibDeps("my-utils-api_main", "Gradle: junit:junit:4.11");
assertModuleLibDepScope("my-utils-api_main", "Gradle: junit:junit:4.11", COMPILE);
//assertModuleLibDepScope("my-utils-api_main", "Gradle: org.hamcrest:hamcrest-core:1.3", COMPILE);
}
Aggregations