use of com.google.api.ads.adwords.axis.v201809.cm.CriterionBidLandscapePage in project googleads-java-lib by googleads.
the class ServiceQueryTest method testNextPageWithSpecifiedCriterionBidLandscapePage.
/**
* Tests using {@link ServiceQuery#nextPage(CriterionBidLandscapePage)} ] to get a next page of
* the result by specifying the previous criterion bid landscape page.
*/
@Test
public void testNextPageWithSpecifiedCriterionBidLandscapePage() {
// Make criterion bid landscape page contain 400 bid landscape points (200 per criterion bid
// landscape point).
int numBidLandscapePoints = 200;
BidLandscapeLandscapePoint bidLandscapeLandscapePoint = new BidLandscapeLandscapePoint();
List<BidLandscapeLandscapePoint> bidLandscapeLandscapePoints = new ArrayList<>();
bidLandscapeLandscapePoints.addAll(Collections.nCopies(numBidLandscapePoints, bidLandscapeLandscapePoint));
CriterionBidLandscape bidLandscape = mock(CriterionBidLandscape.class);
when(bidLandscape.getLandscapePoints()).thenReturn(bidLandscapeLandscapePoints);
CriterionBidLandscapePage page = mock(CriterionBidLandscapePage.class);
when(page.getEntries()).thenReturn(ImmutableList.of(bidLandscape, bidLandscape));
expectedAwql = "SELECT Id, Name WHERE Status = \"ENABLED\" ORDER BY Name DESC LIMIT 400,100";
serviceQuery.nextPage(page);
assertEquals(expectedAwql, serviceQuery.toString());
}
use of com.google.api.ads.adwords.axis.v201809.cm.CriterionBidLandscapePage in project googleads-java-lib by googleads.
the class ServiceQueryTest method testNextPageWithSpecifiedCriterionBidLandscapePage.
/**
* Tests using {@link ServiceQuery#nextPage(CriterionBidLandscapePage)} ] to get a next page of
* the result by specifying the previous criterion bid landscape page.
*/
@Test
public void testNextPageWithSpecifiedCriterionBidLandscapePage() {
// Make criterion bid landscape page contain 400 bid landscape points (200 per criterion bid
// landscape point).
int numBidLandscapePoints = 200;
BidLandscapeLandscapePoint bidLandscapeLandscapePoint = new BidLandscapeLandscapePoint();
List<BidLandscapeLandscapePoint> bidLandscapeLandscapePoints = new ArrayList<>();
bidLandscapeLandscapePoints.addAll(Collections.nCopies(numBidLandscapePoints, bidLandscapeLandscapePoint));
CriterionBidLandscape bidLandscape = mock(CriterionBidLandscape.class);
when(bidLandscape.getLandscapePoints()).thenReturn(bidLandscapeLandscapePoints.toArray(new BidLandscapeLandscapePoint[0]));
CriterionBidLandscapePage page = mock(CriterionBidLandscapePage.class);
when(page.getEntries()).thenReturn(new CriterionBidLandscape[] { bidLandscape, bidLandscape });
expectedAwql = "SELECT Id, Name WHERE Status = \"ENABLED\" ORDER BY Name DESC LIMIT 400,100";
serviceQuery.nextPage(page);
assertEquals(expectedAwql, serviceQuery.toString());
}
use of com.google.api.ads.adwords.axis.v201809.cm.CriterionBidLandscapePage in project googleads-java-lib by googleads.
the class ServiceQueryTest method testHasNextWithSpecifiedCriterionBidLandscapePage.
/**
* Tests using {@link ServiceQuery#hasNext(CriterionBidLandscapePage)} to check if there is still
* a next page.
*/
@Test
public void testHasNextWithSpecifiedCriterionBidLandscapePage() {
// First iteration. There are no previous pages.
CriterionBidLandscapePage page = null;
assertTrue(serviceQuery.hasNext(page));
// Make criterion bid landscape page contain 400 bid landscape points (200 per criterion bid
// landscape point).
int numBidLandscapePoints = 200;
BidLandscapeLandscapePoint bidLandscapeLandscapePoint = new BidLandscapeLandscapePoint();
List<BidLandscapeLandscapePoint> bidLandscapeLandscapePoints = new ArrayList<>();
bidLandscapeLandscapePoints.addAll(Collections.nCopies(numBidLandscapePoints, bidLandscapeLandscapePoint));
CriterionBidLandscape bidLandscape = mock(CriterionBidLandscape.class);
when(bidLandscape.getLandscapePoints()).thenReturn(bidLandscapeLandscapePoints.toArray(new BidLandscapeLandscapePoint[0]));
page = mock(CriterionBidLandscapePage.class);
when(page.getEntries()).thenReturn(new CriterionBidLandscape[] { bidLandscape, bidLandscape });
serviceQuery = new ServiceQuery.Builder().fields("Id", "Name").limit(0, 100).build();
// 2 * 200 landscape points are greater than the page size that is 100.
assertTrue(serviceQuery.hasNext(page));
serviceQuery = new ServiceQuery.Builder().fields("Id", "Name").limit(0, 500).build();
// 2 * 200 landscape points are less than the page size that is 500.
assertFalse(serviceQuery.hasNext(page));
}
use of com.google.api.ads.adwords.axis.v201809.cm.CriterionBidLandscapePage in project googleads-java-lib by googleads.
the class ServiceQueryTest method testNextPageWithPassedNullCriterionBidLandscapePage.
/**
* Tests using {@link ServiceQuery#nextPage(CriterionBidLandscapePage)} when the passed query is
* null.
*/
@Test
public void testNextPageWithPassedNullCriterionBidLandscapePage() {
CriterionBidLandscapePage page = null;
serviceQuery.nextPage(page);
assertEquals(expectedAwql, serviceQuery.toString());
// LIMIT clause stays the same as long as the page is null.
serviceQuery.nextPage(page);
assertEquals(expectedAwql, serviceQuery.toString());
}
use of com.google.api.ads.adwords.axis.v201809.cm.CriterionBidLandscapePage in project googleads-java-lib by googleads.
the class ServiceQueryTest method testNextPageWithEmptyEntriesOnCriterionBidLandscapePage.
/**
* Tests using {@link ServiceQuery#nextPage(CriterionBidLandscapePage)} when the passed page has
* an empty {@code entries} list.
*/
@Test
public void testNextPageWithEmptyEntriesOnCriterionBidLandscapePage() {
CriterionBidLandscapePage page = new CriterionBidLandscapePage();
serviceQuery.nextPage(page);
assertEquals(expectedAwql, serviceQuery.toString());
// LIMIT clause stays the same as long as the page entries attribute is null.
serviceQuery.nextPage(page);
assertEquals(expectedAwql, serviceQuery.toString());
}
Aggregations