blob: 350a2183967159555483a5a78a913ca403bcba36 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jclouds.aliyun.ecs.compute.features;
import com.google.common.collect.ImmutableMap;
import org.jclouds.aliyun.ecs.compute.internal.BaseECSComputeServiceApiMockTest;
import org.jclouds.aliyun.ecs.domain.Tag;
import org.testng.annotations.Test;
import static com.google.common.collect.Iterables.isEmpty;
import static com.google.common.collect.Iterables.size;
import static org.jclouds.aliyun.ecs.domain.options.ListTagsOptions.Builder.paginationOptions;
import static org.jclouds.aliyun.ecs.domain.options.PaginationOptions.Builder.pageNumber;
import static org.testng.Assert.assertEquals;
import static org.testng.Assert.assertTrue;
@Test(groups = "unit", testName = "TagApiMockTest", singleThreaded = true)
public class TagApiMockTest extends BaseECSComputeServiceApiMockTest {
public void testListTags() throws InterruptedException {
server.enqueue(jsonResponse("/tags-first.json"));
server.enqueue(jsonResponse("/tags-last.json"));
Iterable<Tag> tags = api.tagApi().list(TEST_REGION).concat();
assertEquals(size(tags), 10); // Force the PagedIterable to advance
assertEquals(server.getRequestCount(), 2);
assertSent(server, "GET", "DescribeTags", ImmutableMap.of("RegionId", TEST_REGION));
assertSent(server, "GET", "DescribeTags", ImmutableMap.of("RegionId", TEST_REGION), 2);
}
public void testListTagsReturns404() throws InterruptedException {
server.enqueue(response404());
Iterable<Tag> tags = api.tagApi().list(TEST_REGION).concat();
assertTrue(isEmpty(tags));
assertEquals(server.getRequestCount(), 1);
assertSent(server, "GET", "DescribeTags", ImmutableMap.of("RegionId", TEST_REGION));
}
public void testListTagsWithOptions() throws InterruptedException {
server.enqueue(jsonResponse("/tags-first.json"));
Iterable<Tag> tags = api.tagApi().list(TEST_REGION, paginationOptions(pageNumber(1).pageSize(5)));
assertEquals(size(tags), 8);
assertEquals(server.getRequestCount(), 1);
assertSent(server, "GET", "DescribeTags", ImmutableMap.of("RegionId", TEST_REGION), 1);
}
public void testListTagsWithOptionsReturns404() throws InterruptedException {
server.enqueue(response404());
Iterable<Tag> tags = api.tagApi().list(TEST_REGION, paginationOptions(pageNumber(2)));
assertTrue(isEmpty(tags));
assertEquals(server.getRequestCount(), 1);
assertSent(server, "GET", "DescribeTags", ImmutableMap.of("RegionId", TEST_REGION), 2);
}
}