Search in sources :

Example 6 with ApiConfigAnnotationReader

use of com.google.api.server.spi.config.annotationreader.ApiConfigAnnotationReader in project endpoints-java by cloudendpoints.

the class JsonConfigWriterTest method enumResponseIsBlocked.

@Test
public void enumResponseIsBlocked() throws Exception {
    final class Endpoint {

        @SuppressWarnings("unused")
        public TestEnum get() {
            return TestEnum.A;
        }
    }
    new ApiConfigAnnotationReader().loadEndpointMethods(serviceContext, Endpoint.class, apiConfig.getApiClassConfig().getMethods());
    try {
        writer.writeConfig(Collections.singleton(apiConfig));
        fail();
    } catch (InvalidReturnTypeException e) {
    // Expected.
    }
}
Also used : ApiConfigAnnotationReader(com.google.api.server.spi.config.annotationreader.ApiConfigAnnotationReader) InvalidReturnTypeException(com.google.api.server.spi.config.validation.InvalidReturnTypeException) Test(org.junit.Test)

Example 7 with ApiConfigAnnotationReader

use of com.google.api.server.spi.config.annotationreader.ApiConfigAnnotationReader in project endpoints-java by cloudendpoints.

the class JsonConfigWriterTest method objectResponseIsAllowed.

@Test
public void objectResponseIsAllowed() throws Exception {
    final class Endpoint {

        @SuppressWarnings("unused")
        public Bean get() {
            return null;
        }
    }
    new ApiConfigAnnotationReader().loadEndpointMethods(serviceContext, Endpoint.class, apiConfig.getApiClassConfig().getMethods());
    writer.writeConfig(Collections.singleton(apiConfig));
}
Also used : ApiConfigAnnotationReader(com.google.api.server.spi.config.annotationreader.ApiConfigAnnotationReader) Test(org.junit.Test)

Example 8 with ApiConfigAnnotationReader

use of com.google.api.server.spi.config.annotationreader.ApiConfigAnnotationReader in project endpoints-java by cloudendpoints.

the class DiscoveryGeneratorTest method setUp.

@Before
public void setUp() throws Exception {
    TypeLoader typeLoader = new TypeLoader(getClass().getClassLoader());
    ApiConfigAnnotationReader annotationReader = new ApiConfigAnnotationReader(typeLoader.getAnnotationTypes());
    this.configLoader = new ApiConfigLoader(new ApiConfig.Factory(), typeLoader, annotationReader);
    this.generator = new DiscoveryGenerator(typeLoader);
    this.schemaRepository = new SchemaRepository(typeLoader);
}
Also used : ApiConfigAnnotationReader(com.google.api.server.spi.config.annotationreader.ApiConfigAnnotationReader) ApiConfigLoader(com.google.api.server.spi.config.ApiConfigLoader) TypeLoader(com.google.api.server.spi.TypeLoader) JacksonFactory(com.google.api.client.json.jackson2.JacksonFactory) SchemaRepository(com.google.api.server.spi.config.model.SchemaRepository) Before(org.junit.Before)

Example 9 with ApiConfigAnnotationReader

use of com.google.api.server.spi.config.annotationreader.ApiConfigAnnotationReader in project endpoints-java by cloudendpoints.

the class JsonConfigWriterTest method multipleResourceParametersErrorMessage.

/**
 * Tests that if a method has multiple resource parameters, a helpful message is thrown.
 */
@Test
public void multipleResourceParametersErrorMessage() throws Exception {
    final class Endpoint {

        @SuppressWarnings("unused")
        public void get(Bean bean1, Bean bean2) {
        }
    }
    new ApiConfigAnnotationReader().loadEndpointMethods(serviceContext, Endpoint.class, apiConfig.getApiClassConfig().getMethods());
    try {
        writer.writeConfig(Collections.singleton(apiConfig));
        fail("Method with multiple resources should throw IllegalArgumentException");
    } catch (IllegalArgumentException e) {
        assertThat(e.getMessage()).contains("cannot have multiple resource parameters");
    }
}
Also used : ApiConfigAnnotationReader(com.google.api.server.spi.config.annotationreader.ApiConfigAnnotationReader) Test(org.junit.Test)

Example 10 with ApiConfigAnnotationReader

use of com.google.api.server.spi.config.annotationreader.ApiConfigAnnotationReader 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();
}
Also used : ApiKey(com.google.api.server.spi.config.model.ApiKey) TypeLoader(com.google.api.server.spi.TypeLoader) ApiConfigAnnotationReader(com.google.api.server.spi.config.annotationreader.ApiConfigAnnotationReader) ApiConfigValidator(com.google.api.server.spi.config.validation.ApiConfigValidator) URLClassLoader(java.net.URLClassLoader) ApiConfigLoader(com.google.api.server.spi.config.ApiConfigLoader) EndpointsPrettyPrinter(com.google.api.server.spi.response.EndpointsPrettyPrinter) ServiceContext(com.google.api.server.spi.ServiceContext) ObjectWriter(com.fasterxml.jackson.databind.ObjectWriter) ApiConfig(com.google.api.server.spi.config.model.ApiConfig) RestDescription(com.google.api.services.discovery.model.RestDescription) DiscoveryGenerator(com.google.api.server.spi.discovery.DiscoveryGenerator) ImmutableMap(com.google.common.collect.ImmutableMap) DiscoveryContext(com.google.api.server.spi.discovery.DiscoveryGenerator.DiscoveryContext) URLClassLoader(java.net.URLClassLoader) File(java.io.File) Map(java.util.Map) ImmutableMap(com.google.common.collect.ImmutableMap) SchemaRepository(com.google.api.server.spi.config.model.SchemaRepository)

Aggregations

ApiConfigAnnotationReader (com.google.api.server.spi.config.annotationreader.ApiConfigAnnotationReader)15 Test (org.junit.Test)9 TypeLoader (com.google.api.server.spi.TypeLoader)6 ApiConfigLoader (com.google.api.server.spi.config.ApiConfigLoader)5 Named (javax.inject.Named)5 Before (org.junit.Before)4 ServiceContext (com.google.api.server.spi.ServiceContext)3 ApiConfig (com.google.api.server.spi.config.model.ApiConfig)3 ApiKey (com.google.api.server.spi.config.model.ApiKey)2 SchemaRepository (com.google.api.server.spi.config.model.SchemaRepository)2 InvalidReturnTypeException (com.google.api.server.spi.config.validation.InvalidReturnTypeException)2 EndpointsPrettyPrinter (com.google.api.server.spi.response.EndpointsPrettyPrinter)2 File (java.io.File)2 URLClassLoader (java.net.URLClassLoader)2 ObjectWriter (com.fasterxml.jackson.databind.ObjectWriter)1 JacksonFactory (com.google.api.client.json.jackson2.JacksonFactory)1 ApiSerializationConfig (com.google.api.server.spi.config.model.ApiSerializationConfig)1 ApiConfigValidator (com.google.api.server.spi.config.validation.ApiConfigValidator)1 PropertyParameterNameConflictException (com.google.api.server.spi.config.validation.PropertyParameterNameConflictException)1 DiscoveryGenerator (com.google.api.server.spi.discovery.DiscoveryGenerator)1