use of org.apache.karaf.features.Repository in project ddf by codice.
the class ApplicationServiceImplTest method createMockFeaturesService.
/**
* Creates a mock {@code FeaturesService} object consisting of all of the
* features contained in a {@code Repository} object.
*
* @param repo
* @param notInstalledFeatureNames
* @param inactiveBundleLocations
* @return
* @throws Exception
* @see #createMockFeaturesService(Set, Set, Set) for additional details
*/
private FeaturesService createMockFeaturesService(Repository repo, Set<String> notInstalledFeatureNames, Set<String> inactiveBundleLocations) throws Exception {
Set<Feature> notInstalledFeatures = new HashSet<Feature>();
Set<BundleInfo> inactiveBundles = new HashSet<BundleInfo>();
for (Feature feature : repo.getFeatures()) {
if (null != notInstalledFeatureNames && notInstalledFeatureNames.contains(feature.getName())) {
notInstalledFeatures.add(feature);
}
if (null != inactiveBundleLocations) {
for (BundleInfo bundleInfo : feature.getBundles()) {
if (inactiveBundleLocations.contains(bundleInfo.getLocation())) {
inactiveBundles.add(bundleInfo);
}
}
}
}
Set<Repository> repoSet = new HashSet<Repository>();
repoSet.add(repo);
return createMockFeaturesService(repoSet, notInstalledFeatures, inactiveBundles);
}
use of org.apache.karaf.features.Repository in project ddf by codice.
the class ApplicationServiceImplTest method testIgnoreApplications.
/**
* Tests that the service properly ignores applications when checking for
* application status.
*
* @throws Exception
*/
@Test
public void testIgnoreApplications() throws Exception {
Set<Repository> activeRepos = new HashSet<Repository>(Arrays.asList(noMainFeatureRepo1, noMainFeatureRepo2));
FeaturesService featuresService = createMockFeaturesService(activeRepos, null, null);
when(bundleContext.getService(mockFeatureRef)).thenReturn(featuresService);
ApplicationServiceImpl appService = createPermittedApplicationServiceImpl();
// just ignore the first application
List<String> ignoredApps1 = new ArrayList<>(1);
ignoredApps1.add(TEST_APP);
appService.setIgnoredApplications(ignoredApps1);
Set<Application> applications = appService.getApplications();
assertNotNull(applications);
assertEquals(1, applications.size());
assertEquals(TEST_APP2, applications.iterator().next().getName());
// now ignore both applications
List<String> ignoredApps2 = new ArrayList<>(2);
ignoredApps2.add(TEST_APP);
ignoredApps2.add(TEST_APP2);
appService.setIgnoredApplications(ignoredApps2);
applications = appService.getApplications();
assertNotNull(applications);
assertEquals(0, applications.size());
// ignore none
List<String> ignoredApps3 = new ArrayList<>(0);
appService.setIgnoredApplications(ignoredApps3);
applications = appService.getApplications();
assertNotNull(applications);
assertEquals(2, applications.size());
}
use of org.apache.karaf.features.Repository in project ddf by codice.
the class ApplicationServiceImplTest method testStartApplicationASE.
/**
* Tests the {@link ApplicationServiceImpl#startApplication(Application)} method
* for the case where an exception is thrown
*
* @throws Exception
*/
@Test(expected = ApplicationServiceException.class)
public void testStartApplicationASE() throws Exception {
Set<Repository> activeRepos = new HashSet<Repository>(Arrays.asList(mainFeatureRepo, noMainFeatureRepo1, noMainFeatureRepo2));
FeaturesService featuresService = createMockFeaturesService(activeRepos, null, null);
when(bundleContext.getService(mockFeatureRef)).thenReturn(featuresService);
ApplicationService appService = new ApplicationServiceImpl(bundleStateServices) {
@Override
protected BundleContext getContext() {
return bundleContext;
}
};
Application testApp = mock(ApplicationImpl.class);
Feature testFeature = mock(Feature.class);
when(testFeature.getName()).thenReturn(TEST_FEATURE_1_NAME);
when(testApp.getAutoInstallFeatures()).thenReturn(new HashSet<>(Arrays.asList(testFeature)));
doThrow(new ApplicationServiceException()).when(featuresService).installFeatures(anySet(), any(EnumSet.class));
appService.startApplication(testApp);
}
use of org.apache.karaf.features.Repository in project ddf by codice.
the class ApplicationServiceImplTest method testServiceChanged.
/**
* Tests the {@link ApplicationServiceImpl#setConfigFileName(String)} method
*
* @throws Exception
*/
@Test
public void testServiceChanged() throws Exception {
Set<Repository> activeRepos = new HashSet<>(Arrays.asList(mainFeatureRepo, noMainFeatureRepo1));
FeaturesService featuresService = createMockFeaturesService(activeRepos, null, null);
when(bundleContext.getService(mockFeatureRef)).thenReturn(featuresService);
ApplicationServiceImpl appService = new ApplicationServiceImpl(bundleStateServices) {
@Override
protected BundleContext getContext() {
return bundleContext;
}
};
appService.setConfigFileName("foo");
ServiceReference<ConfigurationAdmin> testConfigAdminRef = mock(ServiceReference.class);
ConfigurationAdmin testConfigAdmin = mock(ConfigurationAdmin.class);
Configuration testConfig = mock(Configuration.class);
when(bundleContext.getServiceReference(ConfigurationAdmin.class)).thenReturn(testConfigAdminRef);
when(bundleContext.getService(testConfigAdminRef)).thenReturn(testConfigAdmin);
when(testConfigAdmin.getConfiguration(ApplicationServiceImpl.class.getName())).thenReturn(testConfig);
Dictionary<String, Object> testProperties = new Hashtable<>();
testProperties.put("test1", "foo");
testProperties.put("test2", "bar");
when(testConfig.getProperties()).thenReturn(testProperties);
ServiceEvent serviceEvent = mock(ServiceEvent.class);
when(serviceEvent.getType()).thenReturn(ServiceEvent.REGISTERED);
appService.serviceChanged(serviceEvent);
assertThat(testConfig.getProperties().size(), is(testProperties.size()));
assertThat(testConfig.getProperties().get("test1"), is("foo"));
}
use of org.apache.karaf.features.Repository in project ddf by codice.
the class ApplicationServiceImplTest method testStopApplicationNoMainFeatureStringParam.
/**
* Tests the {@link ApplicationServiceImpl#stopApplication(String)} method
* for the case where there is no main feature, but other features exist
*
* @throws Exception
*/
@Test
public void testStopApplicationNoMainFeatureStringParam() throws Exception {
Set<Repository> activeRepos = new HashSet<Repository>(Arrays.asList(mainFeatureRepo, noMainFeatureRepo1, noMainFeatureRepo2));
FeaturesService featuresService = createMockFeaturesService(activeRepos, null, null);
when(bundleContext.getService(mockFeatureRef)).thenReturn(featuresService);
ApplicationService appService = createPermittedApplicationServiceImpl();
Feature[] featureList = noMainFeatureRepo1.getFeatures();
appService.stopApplication(TEST_APP);
verify(featuresService).uninstallFeature(featureList[0].getName(), featureList[0].getVersion(), EnumSet.of(Option.NoAutoRefreshBundles));
verify(featuresService).uninstallFeature(featureList[1].getName(), featureList[1].getVersion(), EnumSet.of(Option.NoAutoRefreshBundles));
}
Aggregations