/* * JBoss, Home of Professional Open Source * Copyright 2010, Red Hat Middleware LLC, and individual contributors * by the @authors tag. See the copyright.txt in the distribution for a * full listing of individual contributors. * * 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 org.jboss.shrinkwrap.resolver.impl.maven.bootstrap; import org.apache.maven.settings.Server; import org.apache.maven.settings.Settings; import org.junit.After; import org.junit.Assert; import org.junit.Before; import org.junit.Test; /** * Tests maven settings acquisition. * * @author Davide D'Alto * */ public class MavenSettingsBuilderUnitTestCase { @Before public void beforeMethod() { System.setProperty(MavenSettingsBuilder.ALT_USER_SETTINGS_XML_LOCATION, "target/settings/profiles/settings-user.xml"); System.setProperty(MavenSettingsBuilder.ALT_GLOBAL_SETTINGS_XML_LOCATION, "target/settings/profiles/settings-global.xml"); } @After public void afterMethod() { System.clearProperty(MavenSettingsBuilder.ALT_USER_SETTINGS_XML_LOCATION); System.clearProperty(MavenSettingsBuilder.ALT_GLOBAL_SETTINGS_XML_LOCATION); System.clearProperty(MavenSettingsBuilder.ALT_SECURITY_SETTINGS_XML_LOCATION); } @Test public void findUserProfile() { Settings mavenSettings = new MavenSettingsBuilder().buildDefaultSettings(); Assert.assertTrue("Profile in user settings not found", mavenSettings.getProfilesAsMap().containsKey("user-profile")); } @Test public void findGlobalProfile() { Settings mavenSettings = new MavenSettingsBuilder().buildDefaultSettings(); Assert.assertTrue("Profile in global settings not found", mavenSettings.getProfilesAsMap().containsKey("global-profile")); } @Test public void decryptEncryptedPassword() { System.setProperty(MavenSettingsBuilder.ALT_USER_SETTINGS_XML_LOCATION, "target/settings/profiles/settings-auth-encrypted.xml"); System.setProperty(MavenSettingsBuilder.ALT_SECURITY_SETTINGS_XML_LOCATION, "target/settings/profiles/settings-security.xml"); Settings mavenSettings = new MavenSettingsBuilder().buildDefaultSettings(); Server server = mavenSettings.getServer("auth-repository"); Assert.assertNotNull("Server auth-repository is not null", server); Assert.assertEquals("Password was decrypted to shrinkwrap", "shrinkwrap", server.getPassword()); } @Test public void missingSecuritySettingsNotNeeded() { System.setProperty(MavenSettingsBuilder.ALT_USER_SETTINGS_XML_LOCATION, "target/settings/profiles/settings-auth.xml"); System.setProperty(MavenSettingsBuilder.ALT_SECURITY_SETTINGS_XML_LOCATION, "target/settings/profiles/non-existing-settings-security.xml"); Settings mavenSettings = new MavenSettingsBuilder().buildDefaultSettings(); Server server = mavenSettings.getServer("auth-repository"); Assert.assertNotNull("Server auth-repository is not null", server); Assert.assertEquals("Password was decrypted to shrinkwrap", "shrinkwrap", server.getPassword()); } @Test public void shouldRetrieveFirstNonNullString() { String value = MavenSettingsBuilder.getFirstNotNull(null, "shrinkwrap"); Assert.assertEquals("shrinkwrap", value); } }