Esempio n. 1
0
def test_credentials_transport_error():
    # It is an error to provide credentials and a transport instance.
    transport = transports.ZonesRestTransport(
        credentials=ga_credentials.AnonymousCredentials(),
    )
    with pytest.raises(ValueError):
        client = ZonesClient(
            credentials=ga_credentials.AnonymousCredentials(), transport=transport,
        )

    # It is an error to provide a credentials file and a transport instance.
    transport = transports.ZonesRestTransport(
        credentials=ga_credentials.AnonymousCredentials(),
    )
    with pytest.raises(ValueError):
        client = ZonesClient(
            client_options={"credentials_file": "credentials.json"},
            transport=transport,
        )

    # It is an error to provide scopes and a transport instance.
    transport = transports.ZonesRestTransport(
        credentials=ga_credentials.AnonymousCredentials(),
    )
    with pytest.raises(ValueError):
        client = ZonesClient(
            client_options={"scopes": ["1", "2"]}, transport=transport,
        )
Esempio n. 2
0
def test_list_rest(request_type):
    client = ZonesClient(
        credentials=ga_credentials.AnonymousCredentials(),
        transport="rest",
    )

    # send a request that will satisfy transcoding
    request_init = {"project": "sample1"}
    request = request_type(request_init)

    # Mock the http request call within the method and fake a response.
    with mock.patch.object(type(client.transport._session), "request") as req:
        # Designate an appropriate value for the returned response.
        return_value = compute.ZoneList(
            id="id_value",
            kind="kind_value",
            next_page_token="next_page_token_value",
            self_link="self_link_value",
        )

        # Wrap the value into a proper Response obj
        response_value = Response()
        response_value.status_code = 200
        json_return_value = compute.ZoneList.to_json(return_value)
        response_value._content = json_return_value.encode("UTF-8")
        req.return_value = response_value
        response = client.list(request)

    # Establish that the response is the type that we expect.
    assert isinstance(response, pagers.ListPager)
    assert response.id == "id_value"
    assert response.kind == "kind_value"
    assert response.next_page_token == "next_page_token_value"
    assert response.self_link == "self_link_value"
Esempio n. 3
0
def test_list_rest_flattened():
    client = ZonesClient(credentials=ga_credentials.AnonymousCredentials(),)

    # Mock the http request call within the method and fake a response.
    with mock.patch.object(Session, "request") as req:
        # Designate an appropriate value for the returned response.
        return_value = compute.ZoneList()

        # Wrap the value into a proper Response obj
        json_return_value = compute.ZoneList.to_json(return_value)
        response_value = Response()
        response_value.status_code = 200
        response_value._content = json_return_value.encode("UTF-8")
        req.return_value = response_value

        # Call the method with a truthy value for each flattened field,
        # using the keyword arguments to the method.
        client.list(project="project_value",)

        # Establish that the underlying call was made with the expected
        # request object values.
        assert len(req.mock_calls) == 1
        _, http_call, http_params = req.mock_calls[0]
        body = http_params.get("data")
        params = http_params.get("params")
        assert "project_value" in http_call[1] + str(body) + str(params)
Esempio n. 4
0
def test_parse_common_folder_path():
    expected = {
        "folder": "octopus",
    }
    path = ZonesClient.common_folder_path(**expected)

    # Check that the path construction is reversible.
    actual = ZonesClient.parse_common_folder_path(path)
    assert expected == actual
Esempio n. 5
0
def test_parse_common_organization_path():
    expected = {
        "organization": "nudibranch",
    }
    path = ZonesClient.common_organization_path(**expected)

    # Check that the path construction is reversible.
    actual = ZonesClient.parse_common_organization_path(path)
    assert expected == actual
Esempio n. 6
0
def test_parse_common_project_path():
    expected = {
        "project": "mussel",
    }
    path = ZonesClient.common_project_path(**expected)

    # Check that the path construction is reversible.
    actual = ZonesClient.parse_common_project_path(path)
    assert expected == actual
Esempio n. 7
0
def test_zones_client_get_transport_class():
    transport = ZonesClient.get_transport_class()
    available_transports = [
        transports.ZonesRestTransport,
    ]
    assert transport in available_transports

    transport = ZonesClient.get_transport_class("rest")
    assert transport == transports.ZonesRestTransport
Esempio n. 8
0
def test_list_rest_flattened_error():
    client = ZonesClient(credentials=ga_credentials.AnonymousCredentials(),)

    # Attempting to call a method with both a request object and flattened
    # fields is an error.
    with pytest.raises(ValueError):
        client.list(
            compute.ListZonesRequest(), project="project_value",
        )
Esempio n. 9
0
def test_parse_common_billing_account_path():
    expected = {
        "billing_account": "clam",
    }
    path = ZonesClient.common_billing_account_path(**expected)

    # Check that the path construction is reversible.
    actual = ZonesClient.parse_common_billing_account_path(path)
    assert expected == actual
Esempio n. 10
0
def test_list_rest_pager(transport: str = "rest"):
    client = ZonesClient(
        credentials=ga_credentials.AnonymousCredentials(),
        transport=transport,
    )

    # Mock the http request call within the method and fake a response.
    with mock.patch.object(Session, "request") as req:
        # TODO(kbandes): remove this mock unless there's a good reason for it.
        # with mock.patch.object(path_template, 'transcode') as transcode:
        # Set the response as a series of pages
        response = (
            compute.ZoneList(
                items=[
                    compute.Zone(),
                    compute.Zone(),
                    compute.Zone(),
                ],
                next_page_token="abc",
            ),
            compute.ZoneList(
                items=[],
                next_page_token="def",
            ),
            compute.ZoneList(
                items=[
                    compute.Zone(),
                ],
                next_page_token="ghi",
            ),
            compute.ZoneList(items=[
                compute.Zone(),
                compute.Zone(),
            ], ),
        )
        # Two responses for two calls
        response = response + response

        # Wrap the values into proper Response objs
        response = tuple(compute.ZoneList.to_json(x) for x in response)
        return_values = tuple(Response() for i in response)
        for return_val, response_val in zip(return_values, response):
            return_val._content = response_val.encode("UTF-8")
            return_val.status_code = 200
        req.side_effect = return_values

        sample_request = {"project": "sample1"}

        pager = client.list(request=sample_request)

        results = list(pager)
        assert len(results) == 6
        assert all(isinstance(i, compute.Zone) for i in results)

        pages = list(client.list(request=sample_request).pages)
        for page_, token in zip(pages, ["abc", "def", "ghi", ""]):
            assert page_.raw_page.next_page_token == token
Esempio n. 11
0
def test_parse_common_location_path():
    expected = {
        "project": "scallop",
        "location": "abalone",
    }
    path = ZonesClient.common_location_path(**expected)

    # Check that the path construction is reversible.
    actual = ZonesClient.parse_common_location_path(path)
    assert expected == actual
Esempio n. 12
0
def test_list_pager():
    client = ZonesClient(credentials=ga_credentials.AnonymousCredentials(), )

    # Mock the http request call within the method and fake a response.
    with mock.patch.object(Session, "request") as req:
        # Set the response as a series of pages
        response = (
            compute.ZoneList(
                items=[
                    compute.Zone(),
                    compute.Zone(),
                    compute.Zone(),
                ],
                next_page_token="abc",
            ),
            compute.ZoneList(
                items=[],
                next_page_token="def",
            ),
            compute.ZoneList(
                items=[
                    compute.Zone(),
                ],
                next_page_token="ghi",
            ),
            compute.ZoneList(items=[
                compute.Zone(),
                compute.Zone(),
            ], ),
        )
        # Two responses for two calls
        response = response + response

        # Wrap the values into proper Response objs
        response = tuple(compute.ZoneList.to_json(x) for x in response)
        return_values = tuple(Response() for i in response)
        for return_val, response_val in zip(return_values, response):
            return_val._content = response_val.encode("UTF-8")
            return_val.status_code = 200
        req.side_effect = return_values

        metadata = ()
        pager = client.list(request={})

        assert pager._metadata == metadata

        results = list(pager)
        assert len(results) == 6
        assert all(isinstance(i, compute.Zone) for i in results)

        pages = list(client.list(request={}).pages)
        for page_, token in zip(pages, ["abc", "def", "ghi", ""]):
            assert page_.raw_page.next_page_token == token
Esempio n. 13
0
def test_get_rest(transport: str = "rest",
                  request_type=compute.GetZoneRequest):
    client = ZonesClient(
        credentials=ga_credentials.AnonymousCredentials(),
        transport=transport,
    )

    # Everything is optional in proto3 as far as the runtime is concerned,
    # and we are mocking out the actual API, so just send an empty request.
    request = request_type()

    # Mock the http request call within the method and fake a response.
    with mock.patch.object(Session, "request") as req:
        # Designate an appropriate value for the returned response.
        return_value = compute.Zone(
            available_cpu_platforms=["available_cpu_platforms_value"],
            creation_timestamp="creation_timestamp_value",
            deprecated=compute.DeprecationStatus(deleted="deleted_value"),
            description="description_value",
            id="id_value",
            kind="kind_value",
            name="name_value",
            region="region_value",
            self_link="self_link_value",
            status=compute.Zone.Status.DOWN,
        )

        # Wrap the value into a proper Response obj
        json_return_value = compute.Zone.to_json(return_value)
        response_value = Response()
        response_value.status_code = 200
        response_value._content = json_return_value.encode("UTF-8")
        req.return_value = response_value
        response = client.get(request)

    # Establish that the response is the type that we expect.
    assert isinstance(response, compute.Zone)
    assert response.available_cpu_platforms == [
        "available_cpu_platforms_value"
    ]
    assert response.creation_timestamp == "creation_timestamp_value"
    assert response.deprecated == compute.DeprecationStatus(
        deleted="deleted_value")
    assert response.description == "description_value"
    assert response.id == "id_value"
    assert response.kind == "kind_value"
    assert response.name == "name_value"
    assert response.region == "region_value"
    assert response.self_link == "self_link_value"
    assert response.status == compute.Zone.Status.DOWN
Esempio n. 14
0
def test_get_rest_flattened_error(transport: str = "rest"):
    client = ZonesClient(
        credentials=ga_credentials.AnonymousCredentials(),
        transport=transport,
    )

    # Attempting to call a method with both a request object and flattened
    # fields is an error.
    with pytest.raises(ValueError):
        client.get(
            compute.GetZoneRequest(),
            project="project_value",
            zone="zone_value",
        )
Esempio n. 15
0
def test_client_withDEFAULT_CLIENT_INFO():
    client_info = gapic_v1.client_info.ClientInfo()

    with mock.patch.object(transports.ZonesTransport, "_prep_wrapped_messages") as prep:
        client = ZonesClient(
            credentials=ga_credentials.AnonymousCredentials(), client_info=client_info,
        )
        prep.assert_called_once_with(client_info)

    with mock.patch.object(transports.ZonesTransport, "_prep_wrapped_messages") as prep:
        transport_class = ZonesClient.get_transport_class()
        transport = transport_class(
            credentials=ga_credentials.AnonymousCredentials(), client_info=client_info,
        )
        prep.assert_called_once_with(client_info)
Esempio n. 16
0
def test_get_rest(request_type):
    client = ZonesClient(
        credentials=ga_credentials.AnonymousCredentials(),
        transport="rest",
    )

    # send a request that will satisfy transcoding
    request_init = {"project": "sample1", "zone": "sample2"}
    request = request_type(request_init)

    # Mock the http request call within the method and fake a response.
    with mock.patch.object(type(client.transport._session), "request") as req:
        # Designate an appropriate value for the returned response.
        return_value = compute.Zone(
            available_cpu_platforms=["available_cpu_platforms_value"],
            creation_timestamp="creation_timestamp_value",
            description="description_value",
            id=205,
            kind="kind_value",
            name="name_value",
            region="region_value",
            self_link="self_link_value",
            status="status_value",
            supports_pzs=True,
        )

        # Wrap the value into a proper Response obj
        response_value = Response()
        response_value.status_code = 200
        json_return_value = compute.Zone.to_json(return_value)
        response_value._content = json_return_value.encode("UTF-8")
        req.return_value = response_value
        response = client.get(request)

    # Establish that the response is the type that we expect.
    assert isinstance(response, compute.Zone)
    assert response.available_cpu_platforms == [
        "available_cpu_platforms_value"
    ]
    assert response.creation_timestamp == "creation_timestamp_value"
    assert response.description == "description_value"
    assert response.id == 205
    assert response.kind == "kind_value"
    assert response.name == "name_value"
    assert response.region == "region_value"
    assert response.self_link == "self_link_value"
    assert response.status == "status_value"
    assert response.supports_pzs is True
Esempio n. 17
0
def test_common_billing_account_path():
    billing_account = "squid"
    expected = "billingAccounts/{billing_account}".format(
        billing_account=billing_account,
    )
    actual = ZonesClient.common_billing_account_path(billing_account)
    assert expected == actual
Esempio n. 18
0
def test_zones_host_with_port():
    client = ZonesClient(
        credentials=ga_credentials.AnonymousCredentials(),
        client_options=client_options.ClientOptions(
            api_endpoint="compute.googleapis.com:8000"),
    )
    assert client.transport._host == "compute.googleapis.com:8000"
Esempio n. 19
0
def test_transport_instance():
    # A client may be instantiated with a custom transport instance.
    transport = transports.ZonesRestTransport(
        credentials=ga_credentials.AnonymousCredentials(),
    )
    client = ZonesClient(transport=transport)
    assert client.transport is transport
Esempio n. 20
0
def test_common_location_path():
    project = "winkle"
    location = "nautilus"
    expected = "projects/{project}/locations/{location}".format(
        project=project, location=location,
    )
    actual = ZonesClient.common_location_path(project, location)
    assert expected == actual
Esempio n. 21
0
def test_list_rest(transport: str = "rest",
                   request_type=compute.ListZonesRequest):
    client = ZonesClient(
        credentials=ga_credentials.AnonymousCredentials(),
        transport=transport,
    )

    # Everything is optional in proto3 as far as the runtime is concerned,
    # and we are mocking out the actual API, so just send an empty request.
    request = request_type()

    # Mock the http request call within the method and fake a response.
    with mock.patch.object(Session, "request") as req:
        # Designate an appropriate value for the returned response.
        return_value = compute.ZoneList(
            id="id_value",
            items=[
                compute.Zone(
                    available_cpu_platforms=["available_cpu_platforms_value"])
            ],
            kind="kind_value",
            next_page_token="next_page_token_value",
            self_link="self_link_value",
            warning=compute.Warning(code=compute.Warning.Code.CLEANUP_FAILED),
        )

        # Wrap the value into a proper Response obj
        json_return_value = compute.ZoneList.to_json(return_value)
        response_value = Response()
        response_value.status_code = 200
        response_value._content = json_return_value.encode("UTF-8")
        req.return_value = response_value
        response = client.list(request)

    # Establish that the response is the type that we expect.
    assert isinstance(response, pagers.ListPager)
    assert response.id == "id_value"
    assert response.items == [
        compute.Zone(available_cpu_platforms=["available_cpu_platforms_value"])
    ]
    assert response.kind == "kind_value"
    assert response.next_page_token == "next_page_token_value"
    assert response.self_link == "self_link_value"
    assert response.warning == compute.Warning(
        code=compute.Warning.Code.CLEANUP_FAILED)
Esempio n. 22
0
def test_list_rest_bad_request(transport: str = "rest",
                               request_type=compute.ListZonesRequest):
    client = ZonesClient(
        credentials=ga_credentials.AnonymousCredentials(),
        transport=transport,
    )

    # send a request that will satisfy transcoding
    request_init = {"project": "sample1"}
    request = request_type(request_init)

    # Mock the http request call within the method and fake a BadRequest error.
    with mock.patch.object(Session, "request") as req, pytest.raises(
            core_exceptions.BadRequest):
        # Wrap the value into a proper Response obj
        response_value = Response()
        response_value.status_code = 400
        response_value.request = Request()
        req.return_value = response_value
        client.list(request)
Esempio n. 23
0
def test_get_rest_flattened():
    client = ZonesClient(
        credentials=ga_credentials.AnonymousCredentials(),
        transport="rest",
    )

    # Mock the http request call within the method and fake a response.
    with mock.patch.object(type(client.transport._session), "request") as req:
        # Designate an appropriate value for the returned response.
        return_value = compute.Zone()

        # Wrap the value into a proper Response obj
        response_value = Response()
        response_value.status_code = 200
        json_return_value = compute.Zone.to_json(return_value)

        response_value._content = json_return_value.encode("UTF-8")
        req.return_value = response_value

        # get arguments that satisfy an http rule for this method
        sample_request = {"project": "sample1", "zone": "sample2"}

        # get truthy value for each flattened field
        mock_args = dict(
            project="project_value",
            zone="zone_value",
        )
        mock_args.update(sample_request)
        client.get(**mock_args)

        # Establish that the underlying call was made with the expected
        # request object values.
        assert len(req.mock_calls) == 1
        _, args, _ = req.mock_calls[0]
        assert path_template.validate(
            "https://%s/compute/v1/projects/{project}/zones/{zone}" %
            client.transport._host,
            args[1],
        )
Esempio n. 24
0
def test_zones_auth_adc_old_google_auth():
    # If no credentials are provided, we should use ADC credentials.
    with mock.patch.object(google.auth, "default", autospec=True) as adc:
        adc.return_value = (ga_credentials.AnonymousCredentials(), None)
        ZonesClient()
        adc.assert_called_once_with(
            scopes=(
                "https://www.googleapis.com/auth/compute.readonly",
                "https://www.googleapis.com/auth/compute",
                "https://www.googleapis.com/auth/cloud-platform",
            ),
            quota_project_id=None,
        )
Esempio n. 25
0
def test_client_ctx():
    transports = [
        "rest",
    ]
    for transport in transports:
        client = ZonesClient(credentials=ga_credentials.AnonymousCredentials(),
                             transport=transport)
        # Test client calls underlying transport.
        with mock.patch.object(type(client.transport), "close") as close:
            close.assert_not_called()
            with client:
                pass
            close.assert_called()
Esempio n. 26
0
def test_transport_close():
    transports = {
        "rest": "_session",
    }

    for transport, close_name in transports.items():
        client = ZonesClient(credentials=ga_credentials.AnonymousCredentials(),
                             transport=transport)
        with mock.patch.object(type(getattr(client.transport, close_name)),
                               "close") as close:
            with client:
                close.assert_not_called()
            close.assert_called_once()
Esempio n. 27
0
def test__get_default_mtls_endpoint():
    api_endpoint = "example.googleapis.com"
    api_mtls_endpoint = "example.mtls.googleapis.com"
    sandbox_endpoint = "example.sandbox.googleapis.com"
    sandbox_mtls_endpoint = "example.mtls.sandbox.googleapis.com"
    non_googleapi = "api.example.com"

    assert ZonesClient._get_default_mtls_endpoint(None) is None
    assert ZonesClient._get_default_mtls_endpoint(
        api_endpoint) == api_mtls_endpoint
    assert (ZonesClient._get_default_mtls_endpoint(api_mtls_endpoint) ==
            api_mtls_endpoint)
    assert (ZonesClient._get_default_mtls_endpoint(sandbox_endpoint) ==
            sandbox_mtls_endpoint)
    assert (ZonesClient._get_default_mtls_endpoint(sandbox_mtls_endpoint) ==
            sandbox_mtls_endpoint)
    assert ZonesClient._get_default_mtls_endpoint(
        non_googleapi) == non_googleapi
Esempio n. 28
0
def test_common_project_path():
    project = "cuttlefish"
    expected = "projects/{project}".format(project=project, )
    actual = ZonesClient.common_project_path(project)
    assert expected == actual
Esempio n. 29
0
def test_list_rest_required_fields(request_type=compute.ListZonesRequest):
    transport_class = transports.ZonesRestTransport

    request_init = {}
    request_init["project"] = ""
    request = request_type(request_init)
    jsonified_request = json.loads(
        request_type.to_json(request,
                             including_default_value_fields=False,
                             use_integers_for_enums=False))

    # verify fields with default values are dropped

    unset_fields = transport_class(
        credentials=ga_credentials.AnonymousCredentials(
        )).list._get_unset_required_fields(jsonified_request)
    jsonified_request.update(unset_fields)

    # verify required fields with default values are now present

    jsonified_request["project"] = "project_value"

    unset_fields = transport_class(
        credentials=ga_credentials.AnonymousCredentials(
        )).list._get_unset_required_fields(jsonified_request)
    # Check that path parameters and body parameters are not mixing in.
    assert not set(unset_fields) - set((
        "max_results",
        "filter",
        "order_by",
        "page_token",
        "return_partial_success",
    ))
    jsonified_request.update(unset_fields)

    # verify required fields with non-default values are left alone
    assert "project" in jsonified_request
    assert jsonified_request["project"] == "project_value"

    client = ZonesClient(
        credentials=ga_credentials.AnonymousCredentials(),
        transport="rest",
    )
    request = request_type(request_init)

    # Designate an appropriate value for the returned response.
    return_value = compute.ZoneList()
    # Mock the http request call within the method and fake a response.
    with mock.patch.object(Session, "request") as req:
        # We need to mock transcode() because providing default values
        # for required fields will fail the real version if the http_options
        # expect actual values for those fields.
        with mock.patch.object(path_template, "transcode") as transcode:
            # A uri without fields and an empty body will force all the
            # request fields to show up in the query_params.
            transcode_result = {
                "uri": "v1/sample_method",
                "method": "get",
                "query_params": request_init,
            }
            transcode.return_value = transcode_result

            response_value = Response()
            response_value.status_code = 200
            json_return_value = compute.ZoneList.to_json(return_value)
            response_value._content = json_return_value.encode("UTF-8")
            req.return_value = response_value

            response = client.list(request)

            expected_params = []
            actual_params = req.call_args.kwargs["params"]
            assert expected_params == actual_params
Esempio n. 30
0
def test_get_rest_error():
    client = ZonesClient(credentials=ga_credentials.AnonymousCredentials(),
                         transport="rest")