File size: 3,088 Bytes
1856027 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 | # -*- coding: utf-8 -*-
#
# Copyright 2019 Google LLC
#
# 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
#
# https://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 pytest
from google.cloud import bigquery
@pytest.fixture
def target_class():
from google.cloud.bigquery.routine import RoutineArgument
return RoutineArgument
def test_ctor(target_class):
data_type = bigquery.standard_sql.StandardSqlDataType(
type_kind=bigquery.StandardSqlTypeNames.INT64
)
actual_arg = target_class(
name="field_name", kind="FIXED_TYPE", mode="IN", data_type=data_type
)
assert actual_arg.name == "field_name"
assert actual_arg.kind == "FIXED_TYPE"
assert actual_arg.mode == "IN"
assert actual_arg.data_type == data_type
def test_from_api_repr(target_class):
resource = {
"argumentKind": "FIXED_TYPE",
"dataType": {"typeKind": "INT64"},
"mode": "IN",
"name": "field_name",
}
actual_arg = target_class.from_api_repr(resource)
assert actual_arg.name == "field_name"
assert actual_arg.kind == "FIXED_TYPE"
assert actual_arg.mode == "IN"
assert actual_arg.data_type == bigquery.standard_sql.StandardSqlDataType(
type_kind=bigquery.StandardSqlTypeNames.INT64
)
def test_from_api_repr_w_minimal_resource(target_class):
resource = {}
actual_arg = target_class.from_api_repr(resource)
assert actual_arg.name is None
assert actual_arg.kind is None
assert actual_arg.mode is None
assert actual_arg.data_type is None
def test_from_api_repr_w_unknown_fields(target_class):
resource = {"thisFieldIsNotInTheProto": "just ignore me"}
actual_arg = target_class.from_api_repr(resource)
assert actual_arg._properties is resource
def test_eq(target_class):
data_type = bigquery.standard_sql.StandardSqlDataType(
type_kind=bigquery.StandardSqlTypeNames.INT64
)
arg = target_class(
name="field_name", kind="FIXED_TYPE", mode="IN", data_type=data_type
)
arg_too = target_class(
name="field_name", kind="FIXED_TYPE", mode="IN", data_type=data_type
)
assert arg == arg_too
assert not (arg != arg_too)
other_arg = target_class()
assert not (arg == other_arg)
assert arg != other_arg
notanarg = object()
assert not (arg == notanarg)
assert arg != notanarg
def test_repr(target_class):
arg = target_class(name="field_name", kind="FIXED_TYPE", mode="IN", data_type=None)
actual_repr = repr(arg)
assert actual_repr == (
"RoutineArgument(data_type=None, kind='FIXED_TYPE', mode='IN', name='field_name')"
)
|