blob: 69c66edbaeeb53bf1e6eb5159acba4c5090b47a7 [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
#
# 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.
use strict;
use warnings;
use Test::More;
use File::Find;
use_ok 'Avro::Schema';
sub parse {
next unless /\.avsc$/;
open(my $fh, $_);
local $/ = undef;
my $schema = <$fh>;
close $fh;
Avro::Schema->parse($schema);
note("Successfully parsed: $_");
}
# Ensure that all schema files under the "share" directory can be parsed
{
find(\&parse, '../../share');
}
done_testing;