pulumi/pkg/backend/backend_test.go
CyrusNajmabadi 66bd3f4aa8
Breaking changes due to Feature 2.0 work
* Make `async:true` the default for `invoke` calls (#3750)

* Switch away from native grpc impl. (#3728)

* Remove usage of the 'deasync' library from @pulumi/pulumi. (#3752)

* Only retry as long as we get unavailable back.  Anything else continues. (#3769)

* Handle all errors for now. (#3781)


* Do not assume --yes was present when using pulumi in non-interactive mode (#3793)

* Upgrade all paths for sdk and pkg to v2

* Backport C# invoke classes and other recent gen changes (#4288)

Adjust C# generation

* Replace IDeployment with a sealed class (#4318)

Replace IDeployment with a sealed class

* .NET: default to args subtype rather than Args.Empty (#4320)

* Adding system namespace for Dotnet code gen

This is required for using Obsolute attributes for deprecations

```
Iam/InstanceProfile.cs(142,10): error CS0246: The type or namespace name 'ObsoleteAttribute' could not be found (are you missing a using directive or an assembly reference?) [/Users/stack72/code/go/src/github.com/pulumi/pulumi-aws/sdk/dotnet/Pulumi.Aws.csproj]
Iam/InstanceProfile.cs(142,10): error CS0246: The type or namespace name 'Obsolete' could not be found (are you missing a using directive or an assembly reference?) [/Users/stack72/code/go/src/github.com/pulumi/pulumi-aws/sdk/dotnet/Pulumi.Aws.csproj]
```

* Fix the nullability of config type properties in C# codegen (#4379)
2020-04-14 09:30:25 +01:00

118 lines
3.8 KiB
Go

// Copyright 2016-2018, Pulumi Corporation.
//
// Licensed 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 backend
import (
"context"
"testing"
"github.com/stretchr/testify/assert"
"github.com/pulumi/pulumi/pkg/v2/resource/deploy"
"github.com/pulumi/pulumi/sdk/v2/go/common/resource"
"github.com/pulumi/pulumi/sdk/v2/go/common/tokens"
)
func TestGetStackResourceOutputs(t *testing.T) {
// Create a `backendClient` that consults a (mock) `Backend` to make sure it can get the stack
// resource outputs correctly.
typ := "some:invalid:type1"
resc1 := liveState(typ, "resc1", resource.PropertyMap{
resource.PropertyKey("prop1"): resource.NewStringProperty("val1")})
resc2 := liveState(typ, "resc2", resource.PropertyMap{
resource.PropertyKey("prop2"): resource.NewStringProperty("val2")})
// `deleted` will be ignored by `GetStackResourceOutputs`.
deletedName := "resc3"
deleted := deleteState("deletedType", "resc3", resource.PropertyMap{
resource.PropertyKey("deleted"): resource.NewStringProperty("deleted")})
// Mock backend that implements just enough methods to service `GetStackResourceOutputs`.
// Returns a single stack snapshot.
be := &MockBackend{
ParseStackReferenceF: func(s string) (StackReference, error) {
return nil, nil
},
GetStackF: func(ctx context.Context, stackRef StackReference) (Stack, error) {
return &MockStack{
SnapshotF: func(ctx context.Context) (*deploy.Snapshot, error) {
return &deploy.Snapshot{Resources: []*resource.State{
resc1, resc2, deleted,
}}, nil
},
}, nil
},
}
// Backend client, on which we will call `GetStackResourceOutputs`.
client := &backendClient{backend: be}
// Get resource outputs for mock stack.
outs, err := client.GetStackResourceOutputs(context.Background(), "fakeStack")
assert.NoError(t, err)
// Verify resource outputs for resc1.
resc1Actual, exists := outs[resource.PropertyKey(testURN(typ, "resc1"))]
assert.True(t, exists)
assert.True(t, resc1Actual.IsObject())
resc1Type, exists := resc1Actual.V.(resource.PropertyMap)["type"]
assert.True(t, exists)
assert.Equal(t, typ, resc1Type.V)
resc1Outs, exists := resc1Actual.V.(resource.PropertyMap)["outputs"]
assert.True(t, exists)
assert.True(t, resc1Outs.IsObject())
// Verify resource outputs for resc2.
resc2Actual, exists := outs[resource.PropertyKey(testURN(typ, "resc2"))]
assert.True(t, exists)
assert.True(t, resc2Actual.IsObject())
resc2Type, exists := resc2Actual.V.(resource.PropertyMap)["type"]
assert.True(t, exists)
assert.Equal(t, typ, resc2Type.V) // Same type.
resc2Outs, exists := resc2Actual.V.(resource.PropertyMap)["outputs"]
assert.True(t, exists)
assert.True(t, resc2Outs.IsObject())
// Verify the deleted resource is not present.
_, exists = outs[resource.PropertyKey(deletedName)]
assert.False(t, exists)
}
//
// Helpers.
//
func testURN(typ, name string) resource.URN {
return resource.NewURN("test", "test", "", tokens.Type(typ), tokens.QName(name))
}
func deleteState(typ, name string, outs resource.PropertyMap) *resource.State {
return &resource.State{
Delete: true, Type: tokens.Type(typ), URN: testURN(typ, name), Outputs: outs,
}
}
func liveState(typ, name string, outs resource.PropertyMap) *resource.State {
return &resource.State{
Delete: false, Type: tokens.Type(typ), URN: testURN(typ, name), Outputs: outs,
}
}