Beispiel #1
0
def test_parse_ad_group_ad_label_path():
    expected = {
        "customer_id": "cuttlefish",
        "ad_group_id": "mussel",
        "ad_id": "winkle",
        "label_id": "nautilus",
    }
    path = AdGroupAdServiceClient.ad_group_ad_label_path(**expected)

    # Check that the path construction is reversible.
    actual = AdGroupAdServiceClient.parse_ad_group_ad_label_path(path)
    assert expected == actual
Beispiel #2
0
def test_ad_group_ad_label_path():
    customer_id = "whelk"
    ad_group_id = "octopus"
    ad_id = "oyster"
    label_id = "nudibranch"
    expected = "customers/{customer_id}/adGroupAdLabels/{ad_group_id}~{ad_id}~{label_id}".format(
        customer_id=customer_id,
        ad_group_id=ad_group_id,
        ad_id=ad_id,
        label_id=label_id,
    )
    actual = AdGroupAdServiceClient.ad_group_ad_label_path(
        customer_id, ad_group_id, ad_id, label_id)
    assert expected == actual