blob: d43aad86ed9fc105a8fc2a51c9de8039133000d1 [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.
require 'test_help'
class TestFingerprints < Test::Unit::TestCase
def test_md5_fingerprint
schema = Avro::Schema.parse <<-SCHEMA
{ "type": "int" }
SCHEMA
assert_equal 318112854175969537208795771590915775282,
schema.md5_fingerprint
end
def test_sha256_fingerprint
schema = Avro::Schema.parse <<-SCHEMA
{ "type": "int" }
SCHEMA
assert_equal 28572620203319713300323544804233350633246234624932075150020181448463213378117,
schema.sha256_fingerprint
end
end