Search in sources :

Example 1 with AdManagerServices

use of com.google.api.ads.admanager.jaxws.factory.AdManagerServices in project googleads-java-lib by googleads.

the class AdManagerJaxWsSoapIntegrationTest method testGoldenSoap_oauth2.

/**
 * Tests making a JAX-WS Ad Manager API call with OAuth2.
 */
@Test
public void testGoldenSoap_oauth2() throws Exception {
    testHttpServer.setMockResponseBody(SoapResponseXmlProvider.getTestSoapResponse(API_VERSION));
    GoogleCredential credential = new GoogleCredential.Builder().setTransport(new NetHttpTransport()).setJsonFactory(new JacksonFactory()).build();
    credential.setAccessToken("TEST_ACCESS_TOKEN");
    AdManagerSession session = new AdManagerSession.Builder().withApplicationName("TEST_APP").withOAuth2Credential(credential).withEndpoint(testHttpServer.getServerUrl()).withNetworkCode("TEST_NETWORK_CODE").build();
    CompanyServiceInterface companyService = new AdManagerServices().get(session, CompanyServiceInterface.class);
    List<Company> companies = companyService.createCompanies(Lists.newArrayList(new Company()));
    assertEquals(1234L, companies.get(0).getId().longValue());
    Diff diff = DiffBuilder.compare(SoapRequestXmlProvider.getOAuth2SoapRequest(API_VERSION)).withTest(testHttpServer.getLastRequestBody()).checkForSimilar().build();
    assertFalse(diff.hasDifferences());
    assertFalse("Did not request compression but request was compressed", testHttpServer.wasLastRequestBodyCompressed());
    assertEquals("Bearer TEST_ACCESS_TOKEN", testHttpServer.getLastAuthorizationHttpHeader());
}
Also used : CompanyServiceInterface(com.google.api.ads.admanager.jaxws.v202202.CompanyServiceInterface) Company(com.google.api.ads.admanager.jaxws.v202202.Company) Diff(org.xmlunit.diff.Diff) NetHttpTransport(com.google.api.client.http.javanet.NetHttpTransport) GoogleCredential(com.google.api.client.googleapis.auth.oauth2.GoogleCredential) JacksonFactory(com.google.api.client.json.jackson2.JacksonFactory) AdManagerSession(com.google.api.ads.admanager.lib.client.AdManagerSession) AdManagerServices(com.google.api.ads.admanager.jaxws.factory.AdManagerServices) Test(org.junit.Test) MockHttpIntegrationTest(com.google.api.ads.common.lib.testing.MockHttpIntegrationTest)

Example 2 with AdManagerServices

use of com.google.api.ads.admanager.jaxws.factory.AdManagerServices in project googleads-java-lib by googleads.

the class AdManagerJaxWsSoapCompressionIntegrationTest method testGoldenSoap_oauth2.

/**
 * Tests making a JAX-WS Ad Manager API call with OAuth2 and compression enabled.
 */
@Test
public void testGoldenSoap_oauth2() throws Exception {
    testHttpServer.setMockResponseBody(SoapResponseXmlProvider.getTestSoapResponse(API_VERSION));
    GoogleCredential credential = new GoogleCredential.Builder().setTransport(new NetHttpTransport()).setJsonFactory(new JacksonFactory()).build();
    credential.setAccessToken("TEST_ACCESS_TOKEN");
    AdManagerSession session = new AdManagerSession.Builder().withApplicationName("TEST_APP").withOAuth2Credential(credential).withEndpoint(testHttpServer.getServerUrl()).withNetworkCode("TEST_NETWORK_CODE").build();
    CompanyServiceInterface companyService = new AdManagerServices().get(session, CompanyServiceInterface.class);
    List<Company> companies = companyService.createCompanies(Lists.newArrayList(new Company()));
    assertEquals(1234L, companies.get(0).getId().longValue());
    assertTrue("Compression was enabled but the last request body was not compressed", testHttpServer.wasLastRequestBodyCompressed());
    Diff diff = DiffBuilder.compare(SoapRequestXmlProvider.getOAuth2SoapRequest(API_VERSION)).withTest(testHttpServer.getLastRequestBody()).checkForSimilar().build();
    assertFalse(diff.hasDifferences());
    assertEquals("Bearer TEST_ACCESS_TOKEN", testHttpServer.getLastAuthorizationHttpHeader());
}
Also used : CompanyServiceInterface(com.google.api.ads.admanager.jaxws.v202202.CompanyServiceInterface) Company(com.google.api.ads.admanager.jaxws.v202202.Company) Diff(org.xmlunit.diff.Diff) NetHttpTransport(com.google.api.client.http.javanet.NetHttpTransport) GoogleCredential(com.google.api.client.googleapis.auth.oauth2.GoogleCredential) JacksonFactory(com.google.api.client.json.jackson2.JacksonFactory) AdManagerSession(com.google.api.ads.admanager.lib.client.AdManagerSession) AdManagerServices(com.google.api.ads.admanager.jaxws.factory.AdManagerServices) Test(org.junit.Test) MockHttpIntegrationTest(com.google.api.ads.common.lib.testing.MockHttpIntegrationTest)

Example 3 with AdManagerServices

use of com.google.api.ads.admanager.jaxws.factory.AdManagerServices in project googleads-java-lib by googleads.

the class AdManagerJaxWsSoapTimeoutIntegrationTest method testRequestTimeoutEnforced.

/**
 * Tests that the request timeout in ads.properties is enforced.
 */
@Test
public void testRequestTimeoutEnforced() throws Exception {
    testHttpServer.setMockResponseBody(SoapResponseXmlProvider.getTestSoapResponse(API_VERSION));
    testHttpServer.setDelay(200);
    GoogleCredential credential = new GoogleCredential.Builder().setTransport(new NetHttpTransport()).setJsonFactory(new JacksonFactory()).build();
    credential.setAccessToken("TEST_ACCESS_TOKEN");
    AdManagerSession session = new AdManagerSession.Builder().withApplicationName("TEST_APP").withOAuth2Credential(credential).withEndpoint(testHttpServer.getServerUrl()).withNetworkCode("TEST_NETWORK_CODE").build();
    CompanyServiceInterface companyService = new AdManagerServices().get(session, CompanyServiceInterface.class);
    thrown.expect(WebServiceException.class);
    thrown.expectMessage("Read timed out");
    companyService.createCompanies(Lists.newArrayList(new Company()));
}
Also used : CompanyServiceInterface(com.google.api.ads.admanager.jaxws.v202202.CompanyServiceInterface) Company(com.google.api.ads.admanager.jaxws.v202202.Company) NetHttpTransport(com.google.api.client.http.javanet.NetHttpTransport) GoogleCredential(com.google.api.client.googleapis.auth.oauth2.GoogleCredential) JacksonFactory(com.google.api.client.json.jackson2.JacksonFactory) AdManagerSession(com.google.api.ads.admanager.lib.client.AdManagerSession) AdManagerServices(com.google.api.ads.admanager.jaxws.factory.AdManagerServices) Test(org.junit.Test) MockHttpIntegrationTest(com.google.api.ads.common.lib.testing.MockHttpIntegrationTest)

Aggregations

AdManagerServices (com.google.api.ads.admanager.jaxws.factory.AdManagerServices)3 Company (com.google.api.ads.admanager.jaxws.v202202.Company)3 CompanyServiceInterface (com.google.api.ads.admanager.jaxws.v202202.CompanyServiceInterface)3 AdManagerSession (com.google.api.ads.admanager.lib.client.AdManagerSession)3 MockHttpIntegrationTest (com.google.api.ads.common.lib.testing.MockHttpIntegrationTest)3 GoogleCredential (com.google.api.client.googleapis.auth.oauth2.GoogleCredential)3 NetHttpTransport (com.google.api.client.http.javanet.NetHttpTransport)3 JacksonFactory (com.google.api.client.json.jackson2.JacksonFactory)3 Test (org.junit.Test)3 Diff (org.xmlunit.diff.Diff)2