Search in sources :

Example 1 with OfflineCredentials

use of com.google.api.ads.common.lib.auth.OfflineCredentials in project googleads-java-lib by googleads.

the class AdWordsAxisSoapIntegrationTest method testGoldenSoap_oauth2_offlineCredentials.

@Test
public void testGoldenSoap_oauth2_offlineCredentials() throws Exception {
    testHttpServer.setMockResponseBodies(Lists.newArrayList(AuthResponseProvider.getTestOAuthResponse("TEST_ACCESS_TOKEN_1", 1L, "newRefreshToken1"), AuthResponseProvider.getTestOAuthResponse("TEST_ACCESS_TOKEN_2", 3600L, "newRefreshToken2"), SoapResponseXmlProvider.getTestSoapResponse(API_VERSION)));
    OfflineCredentials offlineCredentials = new OfflineCredentials.Builder().forApi(OfflineCredentials.Api.ADWORDS).withTokenUrlServer(testHttpServer.getServerUrl()).fromFile(AdWordsAxisSoapIntegrationTest.class.getResource("props/ads-test.properties")).build();
    Credential credential = offlineCredentials.generateCredential();
    assertTrue(testHttpServer.getLastRequestBody().contains("grant_type=refresh_token"));
    assertTrue(testHttpServer.getLastRequestBody().contains("refresh_token=refreshToken"));
    assertTrue(testHttpServer.getLastRequestBody().contains("client_id=clientId"));
    assertTrue(testHttpServer.getLastRequestBody().contains("client_secret=clientSecret"));
    // Make sure the old token expires - the session builder should issue a request
    // for another access token.
    Thread.sleep(1000);
    assertEquals("TEST_ACCESS_TOKEN_1", credential.getAccessToken());
    AdWordsSession session = new AdWordsSession.Builder().withUserAgent("TEST_APP").withOAuth2Credential(credential).withEndpoint(testHttpServer.getServerUrl()).withDeveloperToken("TEST_DEVELOPER_TOKEN").withClientCustomerId("TEST_CLIENT_CUSTOMER_ID").build();
    testBudgetServiceMutateRequest(session);
    assertEquals("Bearer TEST_ACCESS_TOKEN_2", testHttpServer.getLastAuthorizationHttpHeader());
}
Also used : GoogleCredential(com.google.api.client.googleapis.auth.oauth2.GoogleCredential) Credential(com.google.api.client.auth.oauth2.Credential) OfflineCredentials(com.google.api.ads.common.lib.auth.OfflineCredentials) DiffBuilder(org.xmlunit.builder.DiffBuilder) AdWordsSession(com.google.api.ads.adwords.lib.client.AdWordsSession) MockHttpIntegrationTest(com.google.api.ads.common.lib.testing.MockHttpIntegrationTest) Test(org.junit.Test)

Example 2 with OfflineCredentials

use of com.google.api.ads.common.lib.auth.OfflineCredentials in project googleads-java-lib by googleads.

the class AdManagerAxisSoapIntegrationTest method testGoldenSoap_oauth2_offlineCredentials.

/**
 * Tests making a Axis Ad Manager API call with OfflineCredentials.
 */
@Test
public void testGoldenSoap_oauth2_offlineCredentials() throws Exception {
    testHttpServer.setMockResponseBodies(Lists.newArrayList(AuthResponseProvider.getTestOAuthResponse("TEST_ACCESS_TOKEN_1", 1L, "newRefreshToken1"), AuthResponseProvider.getTestOAuthResponse("TEST_ACCESS_TOKEN_2", 3600L, "newRefreshToken2"), SoapResponseXmlProvider.getTestSoapResponse(API_VERSION)));
    OfflineCredentials offlineCredentials = new OfflineCredentials.Builder().forApi(OfflineCredentials.Api.AD_MANAGER).withTokenUrlServer(testHttpServer.getServerUrl()).fromFile(AdManagerAxisSoapIntegrationTest.class.getResource("props/ads-test.properties")).build();
    Credential credential = offlineCredentials.generateCredential();
    assertTrue(testHttpServer.getLastRequestBody().contains("grant_type=refresh_token"));
    assertTrue(testHttpServer.getLastRequestBody().contains("refresh_token=refreshToken"));
    assertTrue(testHttpServer.getLastRequestBody().contains("client_id=clientId"));
    assertTrue(testHttpServer.getLastRequestBody().contains("client_secret=clientSecret"));
    // Make sure the old token expires - the session builder should issue a request
    // for another access token.
    Thread.sleep(1000);
    assertEquals("TEST_ACCESS_TOKEN_1", credential.getAccessToken());
    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);
    Company[] companies = companyService.createCompanies(new Company[] { new Company() });
    assertEquals(1234L, companies[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("newRefreshToken2", credential.getRefreshToken());
    assertEquals("Bearer TEST_ACCESS_TOKEN_2", testHttpServer.getLastAuthorizationHttpHeader());
}
Also used : CompanyServiceInterface(com.google.api.ads.admanager.axis.v202202.CompanyServiceInterface) GoogleCredential(com.google.api.client.googleapis.auth.oauth2.GoogleCredential) Credential(com.google.api.client.auth.oauth2.Credential) Company(com.google.api.ads.admanager.axis.v202202.Company) Diff(org.xmlunit.diff.Diff) OfflineCredentials(com.google.api.ads.common.lib.auth.OfflineCredentials) DiffBuilder(org.xmlunit.builder.DiffBuilder) AdManagerSession(com.google.api.ads.admanager.lib.client.AdManagerSession) AdManagerServices(com.google.api.ads.admanager.axis.factory.AdManagerServices) Test(org.junit.Test) MockHttpIntegrationTest(com.google.api.ads.common.lib.testing.MockHttpIntegrationTest)

Aggregations

OfflineCredentials (com.google.api.ads.common.lib.auth.OfflineCredentials)2 MockHttpIntegrationTest (com.google.api.ads.common.lib.testing.MockHttpIntegrationTest)2 Credential (com.google.api.client.auth.oauth2.Credential)2 GoogleCredential (com.google.api.client.googleapis.auth.oauth2.GoogleCredential)2 Test (org.junit.Test)2 DiffBuilder (org.xmlunit.builder.DiffBuilder)2 AdManagerServices (com.google.api.ads.admanager.axis.factory.AdManagerServices)1 Company (com.google.api.ads.admanager.axis.v202202.Company)1 CompanyServiceInterface (com.google.api.ads.admanager.axis.v202202.CompanyServiceInterface)1 AdManagerSession (com.google.api.ads.admanager.lib.client.AdManagerSession)1 AdWordsSession (com.google.api.ads.adwords.lib.client.AdWordsSession)1 Diff (org.xmlunit.diff.Diff)1