Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,9 @@ public PaginatorsClassSpec(IntermediateModel model, String c2jOperationName, Pag
this.poetExtensions = new PoetExtension(model);
this.typeProvider = new TypeProvider(model);
this.operationModel = model.getOperation(c2jOperationName);
if (operationModel == null) {
throw new IllegalArgumentException("The service model does not model an operation '" + c2jOperationName + "'");
}
this.paginationDocs = new PaginationDocs(model, operationModel, paginatorDefinition);
}

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file 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 software.amazon.awssdk.codegen.poet.paginators;

import static org.assertj.core.api.Assertions.assertThatThrownBy;

import com.squareup.javapoet.ClassName;
import com.squareup.javapoet.TypeSpec;
import org.junit.jupiter.api.Test;
import software.amazon.awssdk.codegen.model.intermediate.IntermediateModel;
import software.amazon.awssdk.codegen.model.service.PaginatorDefinition;
import software.amazon.awssdk.codegen.poet.ClientTestModels;

public class PaginatorsClassSpecTest {
@Test
public void constructor_unknownOperationName_throws() {
assertThatThrownBy(() -> new TestPaginatorSpec(ClientTestModels.awsJsonServiceModels(),
"~~DoesNotExist",
new PaginatorDefinition()))
.isInstanceOf(IllegalArgumentException.class)
.hasMessageContaining("The service model does not model an operation '~~DoesNotExist'");
}

private static class TestPaginatorSpec extends PaginatorsClassSpec {
TestPaginatorSpec(IntermediateModel model, String c2jOperationName, PaginatorDefinition paginatorDefinition) {
super(model, c2jOperationName, paginatorDefinition);
}

@Override
public TypeSpec poetSpec() {
throw new UnsupportedOperationException();
}

@Override
public ClassName className() {
throw new UnsupportedOperationException();
}
}
}
Loading