blob: 726383f3ab3614a63277c483d3dc7f26817d4f69 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.apache.knox.gateway.util;
import org.apache.knox.gateway.deploy.ServiceDeploymentContributor;
import org.apache.knox.gateway.service.definition.ServiceDefinition;
import org.apache.knox.gateway.service.definition.ServiceDefinitionComparator;
import org.junit.Assert;
import org.junit.Test;
import java.io.File;
import java.net.URL;
import java.util.Arrays;
import java.util.List;
import java.util.Set;
public class ServiceDefinitionsLoaderTest {
@Test
public void testServiceDefinitionLoading() {
final List<String> barVersions = Arrays.asList("1.0.0", "2.0.0");
URL url = ClassLoader.getSystemResource("services");
Set<ServiceDeploymentContributor> contributors = ServiceDefinitionsLoader.loadServiceDefinitionDeploymentContributors(new File(url.getFile()));
Assert.assertNotNull(contributors);
Assert.assertEquals(2, contributors.size());
for (ServiceDeploymentContributor contributor : contributors) {
if (contributor.getName().equals("foo")) {
Assert.assertEquals("1.0.0", contributor.getVersion().toString());
Assert.assertEquals("FOO", contributor.getRole());
} else if (contributor.getName().equals("bar")) {
Assert.assertTrue(barVersions.contains(contributor.getVersion().toString()));
Assert.assertEquals("BAR", contributor.getRole());
} else {
Assert.fail("the loaded services don't match the test input");
}
}
}
@Test
public void shouldReturnLoadedServiceDefinitionsOrdered() throws Exception {
final URL url = ClassLoader.getSystemResource("services");
final Set<ServiceDefinition> serviceDefinitions = ServiceDefinitionsLoader.getServiceDefinitions(new File(url.getFile()));
Assert.assertTrue(CollectionUtils.isSorted(serviceDefinitions, new ServiceDefinitionComparator()));
}
}