blob: c3c90057b19eca4301f89dffaf41d5a04ec0863e [file]
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you 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.
from tests.common.impala_test_suite import ImpalaTestSuite
from tests.common.test_result_verifier import create_query_result
from tests.common.test_result_verifier import compute_aggregation
# Unittest class for the test_result_verifier module.
class TestResultVerifier(ImpalaTestSuite):
def test_result_row_indexing(self):
res = create_query_result(self.client.execute("select 1 as int_col, 'A' as str_col"))
assert len(res.rows) == 1
# Can index columns by case insensitive string (column alias) or column position
assert res.rows[0]['int_col'] == "1"
assert res.rows[0][0] == "1"
assert res.rows[0]['INT_COL'] == "1"
# String columns results are enclosed in single-quotes
assert res.rows[0]['str_col'] == "'A'"
assert res.rows[0][1] == "'A'"
# Try to index by a column alias and position that does not exist
try:
res.rows[0]['does_not_exist']
assert False, 'Expected error due to column alias not existing'
except IndexError as e:
assert "No column with label: does_not_exist" in str(e)
try:
res.rows[0][2]
assert False, 'Expected error due to column position not existing'
except IndexError as e:
assert 'list index out of range' in str(e)
def test_compute_aggregation(self):
profile = '''
FieldA: 5 (5)
FieldB: bla bla
FieldA: 5.10K (5101)
FieldA: 1.11M (1110555)
FieldC: 1.23K (1234)
FieldA: 2.99B (2990111111)
FieldK: 7 (7)
'''
assert compute_aggregation('SUM', 'FieldA', profile) == 2991226772
assert compute_aggregation('SUM', 'FieldK', profile) == 7
assert compute_aggregation('SUM', 'FieldX', profile) == 0