-
Notifications
You must be signed in to change notification settings - Fork 190
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
25,354 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
// 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 generate_test | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/stretchr/testify/assert" | ||
"github.com/stretchr/testify/require" | ||
|
||
"github.com/aws-controllers-k8s/code-generator/pkg/testutil" | ||
) | ||
|
||
func TestSageMaker_ARN_Field_Override(t *testing.T) { | ||
assert := assert.New(t) | ||
require := require.New(t) | ||
|
||
g := testutil.NewGeneratorForService(t, "sagemaker") | ||
|
||
crds, err := g.GetCRDs() | ||
require.Nil(err) | ||
|
||
crd := getCRDByName("DataQualityJobDefinition", crds) | ||
require.NotNil(crd) | ||
|
||
// The CreateDataQualityJobDefinition has the following definition: | ||
// | ||
// "CreateDataQualityJobDefinition":{ | ||
// "name":"CreateDataQualityJobDefinition", | ||
// "http":{ | ||
// "method":"POST", | ||
// "requestUri":"/" | ||
// }, | ||
// "input":{"shape":"CreateDataQualityJobDefinitionRequest"}, | ||
// "output":{"shape":"CreateDataQualityJobDefinitionResponse"}, | ||
// "errors":[ | ||
// {"shape":"ResourceLimitExceeded"}, | ||
// {"shape":"ResourceInUse"} | ||
// ] | ||
// } | ||
// | ||
// Where the CreateDataQualityJobDefinitionResponse shape looks like this: | ||
// | ||
// "CreateDataQualityJobDefinitionResponse":{ | ||
// "type":"structure", | ||
// "required":["JobDefinitionArn"], | ||
// "members":{ | ||
// "JobDefinitionArn":{"shape":"MonitoringJobDefinitionArn"} | ||
// } | ||
// } | ||
// | ||
// So, we expect that the logic in crd.IsPrimaryARNField() parses through | ||
// field config and identifies the JobDefinitionArn as the primaryARNField | ||
// for the resource | ||
assert.Equal(true, crd.IsPrimaryARNField("JobDefinitionArn")) | ||
|
||
} |
Oops, something went wrong.