use of org.walkmod.conf.entities.Configuration in project walkmod-core by walkmod.
the class XMLConfigurationProviderTest method testRemovePlugin.
@Test
public void testRemovePlugin() throws Exception {
File aux = new File("src/test/resources/xml");
aux.mkdirs();
File xml = new File(aux, "walkmod.xml");
XMLConfigurationProvider prov = new XMLConfigurationProvider(xml.getPath(), false);
try {
Configuration conf = new ConfigurationImpl();
prov.init(conf);
prov.createConfig();
List<String> plugins = new LinkedList<String>();
plugins.add("org.walkmod:imports-cleaner");
AddPluginCommand command = new AddPluginCommand(plugins);
List<PluginConfig> pluginCfgs = command.build();
prov.addPluginConfig(pluginCfgs.get(0), false);
String output = FileUtils.readFileToString(xml);
System.out.println(output);
Assert.assertTrue(output.contains("imports-cleaner"));
prov.removePluginConfig(pluginCfgs.get(0), false);
output = FileUtils.readFileToString(xml);
System.out.println(output);
Assert.assertTrue(!output.contains("imports-cleaner"));
} finally {
if (xml.exists()) {
xml.delete();
}
}
}
use of org.walkmod.conf.entities.Configuration in project walkmod-core by walkmod.
the class YAMLConfigurationProviderTest method testAddTransformation.
@Test
public void testAddTransformation() throws Exception {
AddTransformationCommand command = new AddTransformationCommand("imports-cleaner", null, false, null, null, null, null, false);
File file = new File("src/test/resources/yaml/addtransformation.yml");
if (file.exists()) {
file.delete();
}
file.createNewFile();
FileUtils.write(file, "");
try {
YAMLConfigurationProvider provider = new YAMLConfigurationProvider(file.getPath());
Configuration conf = new ConfigurationImpl();
provider.init(conf);
TransformationConfig transCfg = command.buildTransformationCfg();
provider.addTransformationConfig(null, null, transCfg, false, null, null);
String output = FileUtils.readFileToString(file);
String desiredOutput = "transformations:\n";
desiredOutput += "- type: \"imports-cleaner\"";
Assert.assertEquals(desiredOutput, output);
} finally {
if (file.exists()) {
file.delete();
}
}
}
use of org.walkmod.conf.entities.Configuration in project walkmod-core by walkmod.
the class YAMLConfigurationProviderTest method testAddConfigurationParameterWithCategory.
@Test
public void testAddConfigurationParameterWithCategory() throws Exception {
AddTransformationCommand command = new AddTransformationCommand("imports-cleaner", null, false, null, null, null, null, false);
File file = new File("src/test/resources/yaml/rmchains.yml");
if (file.exists()) {
file.delete();
}
file.createNewFile();
FileUtils.write(file, "");
try {
YAMLConfigurationProvider provider = new YAMLConfigurationProvider(file.getPath());
Configuration conf = new ConfigurationImpl();
provider.init(conf);
TransformationConfig transformationCfg = command.buildTransformationCfg();
provider.addTransformationConfig(null, null, transformationCfg, false, null, null);
provider.addConfigurationParameter("testParam", "hello", "imports-cleaner", "transformation", null, null, false);
String output = FileUtils.readFileToString(file);
System.out.println(output);
Assert.assertTrue(output.contains("params") && output.contains("testParam") && output.contains("hello"));
} finally {
if (file.exists()) {
file.delete();
}
}
}
use of org.walkmod.conf.entities.Configuration in project walkmod-core by walkmod.
the class YAMLConfigurationProviderTest method testRemovePlugin.
@Test
public void testRemovePlugin() throws Exception {
List<String> list = new LinkedList<String>();
list.add("org.walkmod:javalang");
File file = new File("src/test/resources/yaml/removePlugin.yml");
if (file.exists()) {
file.delete();
}
file.createNewFile();
String input = "plugins:\n";
input += "- \"org.walkmod:imports-cleaner:2.0\"";
FileUtils.write(file, input);
try {
YAMLConfigurationProvider provider = new YAMLConfigurationProvider(file.getPath());
Configuration conf = new ConfigurationImpl();
provider.init(conf);
PluginConfig pc = new PluginConfigImpl();
pc.setGroupId("org.walkmod");
pc.setArtifactId("imports-cleaner");
provider.removePluginConfig(pc, false);
String output = FileUtils.readFileToString(file);
System.out.println(output);
Assert.assertTrue(!output.contains("imports-cleaner"));
} finally {
if (file.exists()) {
file.delete();
}
}
}
use of org.walkmod.conf.entities.Configuration in project walkmod-core by walkmod.
the class YAMLConfigurationProviderTest method testAddTransformationWithBefore.
@Test
public void testAddTransformationWithBefore() throws Exception {
AddTransformationCommand command = new AddTransformationCommand("imports-cleaner", null, false, null, null, null, null, false);
File file = new File("src/test/resources/yaml/addchain.yml");
if (file.exists()) {
file.delete();
}
file.createNewFile();
FileUtils.write(file, "");
try {
YAMLConfigurationProvider provider = new YAMLConfigurationProvider(file.getPath());
Configuration conf = new ConfigurationImpl();
provider.init(conf);
TransformationConfig transformationCfg = command.buildTransformationCfg();
provider.addTransformationConfig("default", null, transformationCfg, false, null, null);
command = new AddTransformationCommand("setter-getter", "mychain", false, null, null, null, null, false, null, "default");
transformationCfg = command.buildTransformationCfg();
provider.addTransformationConfig("mychain", null, transformationCfg, false, null, "default");
String output = FileUtils.readFileToString(file);
Assert.assertTrue(output.contains("mychain"));
Assert.assertTrue(output.contains("default"));
Assert.assertTrue(output.indexOf("default") > output.indexOf("mychain"));
} finally {
if (file.exists()) {
file.delete();
}
}
}
Aggregations