Skip to content

Instantly share code, notes, and snippets.

@swgillespie
Created June 27, 2018 23:46
Show Gist options
  • Save swgillespie/a63b54a7271f84e174bb50fe4551c1a9 to your computer and use it in GitHub Desktop.
Save swgillespie/a63b54a7271f84e174bb50fe4551c1a9 to your computer and use it in GitHub Desktop.
# 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.
import pulumi
if __name__ == "__main__":
config = pulumi.Config("test")
assert pulumi.get_project() == "myproject"
assert pulumi.get_stack() == "mystack"
assert config.get("known") == "knownkey"
assert config.get("unknown") is None
assert config.get_bool('lowercase_true')
assert config.get_bool('uppercase_true')
assert not config.get_bool('lowercase_false')
assert not config.get_bool('uppercase_false')
try:
config.get_bool('not_a_bool')
except pulumi.ConfigTypeError as exn:
assert exn.key == 'test:not_a_bool'
assert exn.expect_type == 'bool'
else:
from os import path
from .util import LanghostTest
class RuntimeSettingsTest(LanghostTest):
def test_runtime_settings(self):
self.run_test(program=__file__,
project="myproject",
stack="mystack",
config={
"test:known": "knownkey",
"test:lowercase_true": "true",
"test:uppercase_true": "True",
"test:lowercase_false": "false",
"test:uppercase_false": "False",
"test:not_a_bool": "DBBool",
},
expected_resource_count=0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment