use of com.google.api.server.spi.discovery.DiscoveryGenerator.DiscoveryContext in project endpoints-java by cloudendpoints.
the class DiscoveryGeneratorTest method testWriteDiscovery_EnumEndpoint.
@Test
public void testWriteDiscovery_EnumEndpoint() throws Exception {
RestDescription doc = getDiscovery(new DiscoveryContext(), EnumEndpoint.class);
RestDescription expected = readExpectedAsDiscovery("enum_endpoint.json");
compareDiscovery(expected, doc);
}
use of com.google.api.server.spi.discovery.DiscoveryGenerator.DiscoveryContext in project endpoints-java by cloudendpoints.
the class DiscoveryGeneratorTest method testWriteDiscovery_namespace.
@Test
public void testWriteDiscovery_namespace() throws Exception {
RestDescription doc = getDiscovery(new DiscoveryContext(), NamespaceEndpoint.class);
RestDescription expected = readExpectedAsDiscovery("namespace_endpoint.json");
compareDiscovery(expected, doc);
}
use of com.google.api.server.spi.discovery.DiscoveryGenerator.DiscoveryContext in project endpoints-java by cloudendpoints.
the class GetDiscoveryDocAction method getDiscoveryDoc.
/**
* Generates a Java client library for an API. Combines the steps of generating API
* configuration, generating Discovery doc and generating client library into one.
* @param classPath Class path to load service classes and their dependencies
* @param outputDirPath Directory to write output files into
* @param serviceClassNames Array of service class names of the API
* @param hostname The hostname to use
* @param basePath The base path to use
* @param outputToDisk Whether or not to output discovery docs to disk
*/
public Map<String, String> getDiscoveryDoc(URL[] classPath, String outputDirPath, List<String> serviceClassNames, String hostname, String basePath, boolean outputToDisk) throws ClassNotFoundException, IOException, ApiConfigException {
File outputDir = new File(outputDirPath);
if (!outputDir.isDirectory()) {
throw new IllegalArgumentException(outputDirPath + " is not a directory");
}
ClassLoader classLoader = new URLClassLoader(classPath, getClass().getClassLoader());
ApiConfig.Factory configFactory = new ApiConfig.Factory();
TypeLoader typeLoader = new TypeLoader(classLoader);
SchemaRepository schemaRepository = new SchemaRepository(typeLoader);
ApiConfigValidator validator = new ApiConfigValidator(typeLoader, schemaRepository);
DiscoveryGenerator discoveryGenerator = new DiscoveryGenerator(typeLoader);
List<ApiConfig> apiConfigs = Lists.newArrayListWithCapacity(serviceClassNames.size());
ImmutableListMultimap<ApiKey, ApiConfig> configsByKey = Multimaps.index(apiConfigs, new Function<ApiConfig, ApiKey>() {
@Override
public ApiKey apply(ApiConfig input) {
return input.getApiKey();
}
});
for (ApiKey key : configsByKey.keys()) {
validator.validate(configsByKey.get(key));
}
ApiConfigLoader configLoader = new ApiConfigLoader(configFactory, typeLoader, new ApiConfigAnnotationReader(typeLoader.getAnnotationTypes()));
ServiceContext serviceContext = ServiceContext.createFromHostname(hostname, ServiceContext.DEFAULT_API_NAME);
for (Class<?> serviceClass : loadClasses(classLoader, serviceClassNames)) {
apiConfigs.add(configLoader.loadConfiguration(serviceContext, serviceClass));
}
DiscoveryGenerator.Result result = discoveryGenerator.writeDiscovery(apiConfigs, new DiscoveryContext().setHostname(hostname).setBasePath(basePath), schemaRepository);
ObjectWriter writer = ObjectMapperUtil.createStandardObjectMapper().writer(new EndpointsPrettyPrinter());
ImmutableMap.Builder<String, String> builder = ImmutableMap.builder();
for (Map.Entry<ApiKey, RestDescription> entry : result.discoveryDocs().entrySet()) {
ApiKey key = entry.getKey();
String discoveryDocFilePath = outputDir + "/" + key.getName() + "-" + key.getVersion() + "-rest.discovery";
String docString = writer.writeValueAsString(entry.getValue());
if (outputToDisk) {
Files.write(docString, new File(discoveryDocFilePath), UTF_8);
System.out.println("API Discovery Document written to " + discoveryDocFilePath);
}
builder.put(discoveryDocFilePath, docString);
}
return builder.build();
}
use of com.google.api.server.spi.discovery.DiscoveryGenerator.DiscoveryContext in project endpoints-java by cloudendpoints.
the class DiscoveryGeneratorTest method testWriteDiscovery_directory.
@Test
public void testWriteDiscovery_directory() throws Exception {
DiscoveryGenerator.Result result = generator.writeDiscovery(ImmutableList.of(configLoader.loadConfiguration(ServiceContext.create(), ArrayEndpoint.class), configLoader.loadConfiguration(ServiceContext.create(), EnumEndpoint.class)), new DiscoveryContext());
assertThat(result.directory()).isEqualTo(readExpectedAsDirectory("directory.json"));
}
use of com.google.api.server.spi.discovery.DiscoveryGenerator.DiscoveryContext in project endpoints-java by cloudendpoints.
the class DiscoveryGeneratorTest method testWriteDiscovery_ArrayEndpoint.
@Test
public void testWriteDiscovery_ArrayEndpoint() throws Exception {
RestDescription doc = getDiscovery(new DiscoveryContext(), ArrayEndpoint.class);
RestDescription expected = readExpectedAsDiscovery("array_endpoint.json");
compareDiscovery(expected, doc);
}
Aggregations