blob: 355efd7e1d97e54af2cdf6f14ef0dc260bd57e9a [file] [log] [blame]
# 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.
class TestSortToIndices < Test::Unit::TestCase
include Helper::Buildable
sub_test_case("Integer") do
def test_no_null
array = build_int16_array([1, 0, 4, -3])
assert_equal(build_uint64_array([3, 1, 0, 2]),
array.sort_to_indices)
end
def test_null
array = build_int16_array([nil, 1, 0, nil, 4, 3])
assert_equal(build_uint64_array([2, 1, 5, 4, 0, 3]),
array.sort_to_indices)
end
end
sub_test_case("String") do
def test_no_null
array = build_string_array(["hello", "world", "a", "z"])
assert_equal(build_uint64_array([2, 0, 1, 3]),
array.sort_to_indices)
end
def test_null
array = build_string_array([nil, "b", "a", nil, "c", "d"])
assert_equal(build_uint64_array([2, 1, 4, 5, 0, 3]),
array.sort_to_indices)
end
end
end