예제 #1
0
파일: test_base.py 프로젝트: leowa/tfcli
def test_do_hcl_body_empty_list_attribute_value():
    a = Attribute("website", [dict(name="", index="index.html", ref=[])])
    assert (
        do_hcl_body(a)
        == """    website {
        index = "index.html"
    }"""
    )
예제 #2
0
파일: test_base.py 프로젝트: leowa/tfcli
def test_do_hcl_body_bool_attribute_value():
    a = Attribute("versioning", [dict(enabled=False, mfa_delete=False)])
    assert (
        do_hcl_body(a)
        == """    versioning {
        enabled = false
        mfa_delete = false
    }"""
    )
예제 #3
0
파일: test_base.py 프로젝트: leowa/tfcli
def test_do_hcl_body_zero_attribute_value():
    a = Attribute("limit", [dict(min=0, max=1)])
    assert (
        do_hcl_body(a)
        == """    limit {
        min = 0
        max = 1
    }"""
    )
예제 #4
0
파일: test_base.py 프로젝트: leowa/tfcli
def test_do_hcl_body_dict_value_empty():
    a = Attribute(
        "tags",
        {
            "ingress.k8s.aws/cluster": "",
            "ingress.k8s.aws/resource": "",
            "kubernetes.io/namespace": None,
        },
    )
    assert do_hcl_body(a) == ""
예제 #5
0
파일: test_base.py 프로젝트: leowa/tfcli
def test_do_hcl_body_escape_interpolation_json():
    # ref: https://www.terraform.io/docs/configuration-0-11/interpolation.html
    # > You can escape interpolation with double dollar signs: $${foo} will be rendered as a literal ${foo}.
    a = Attribute("tags", '{"hello": "${world}"}')
    assert (
        do_hcl_body(a)
        == """    tags = <<TAGS
{
  "hello": "$${world}"
}
TAGS"""
    )
예제 #6
0
파일: test_base.py 프로젝트: leowa/tfcli
def test_do_hcl_body_list_of_dict():
    a = Attribute("cycle", [dict(at=10, repeat=5), dict(at=1, repeat=1000)])
    assert (
        do_hcl_body(a)
        == """    cycle {
        at = 10
        repeat = 5
    }
    cycle {
        at = 1
        repeat = 1000
    }"""
    )
예제 #7
0
파일: test_base.py 프로젝트: leowa/tfcli
def test_do_hcl_body_dict_value():
    a = Attribute(
        "tags",
        {
            "ingress.k8s.aws/cluster": "mpp",
            "ingress.k8s.aws/resource": "LoadBalancer",
            "kubernetes.io/namespace": "mongoproxy",
        },
    )
    assert (
        do_hcl_body(a)
        == """    tags = {
        "ingress.k8s.aws/cluster" = "mpp"
        "ingress.k8s.aws/resource" = "LoadBalancer"
        "kubernetes.io/namespace" = "mongoproxy"
    }"""
    )
예제 #8
0
파일: test_base.py 프로젝트: leowa/tfcli
def test_do_hcl_body_not_json():
    a = Attribute("protocol", "-1")
    assert do_hcl_body(a) == '    protocol = "-1"'