Sha256: d9a6f3c1657dbfe67dcac0d6fe3eb20731208eb40ad8f472fd46777dbc095afe

Contents?: true

Size: 1.59 KB

Versions: 2

Compression:

Stored size: 1.59 KB

Contents

#!/usr/bin/env ruby -s
require 'rubygems'
$:.unshift(File.join(File.expand_path(File.dirname(__FILE__)), "..", 'lib'))
require 'rdf_context'
require 'spec/rdfa_helper'
require 'getoptlong'

def run_tc(tc)
  puts "run #{tc.name}"
  puts tc.input if $verbose
  pg = RdfContext::Graph.new if $pg_format
  graph = RdfContext::RdfaParser.parse(tc.input, tc.informationResourceInput, :strict => $strict, :version => tc.version, :processor_graph => pg)
  puts graph.serialize(:format => $format.to_sym, :base => tc.informationResourceInput) unless $quiet
  if pg
    puts "\nProcessor Graph:\n"
    puts pg.serialize(:format => $pg_format.to_sym) unless $quiet
  end
end

$verbose = false
$format = :ntriples
$pg_format = nil
$strict = false
debug = false
suite = "xhtml"
opts = GetoptLong.new(
  ["--debug", GetoptLong::NO_ARGUMENT],
  ["--verbose", GetoptLong::NO_ARGUMENT],
  ["--quiet", GetoptLong::NO_ARGUMENT],
  ["--suite", GetoptLong::OPTIONAL_ARGUMENT],
  ["--strict", GetoptLong::NO_ARGUMENT],
  ["--format", GetoptLong::REQUIRED_ARGUMENT],
  ["--pg-format", GetoptLong::REQUIRED_ARGUMENT]
)
opts.each do |opt, arg|
  case opt
  when '--verbose' then $verbose = true
  when '--quiet' then $quiet = true
  when '--debug' then debug = true
  when '--format' then $format = arg
  when '--pg-format' then $pg_format = arg
  when '--suite' then suite = arg
  when '--strict' then $strict = true
  end
end

test_cases = RdfaHelper::TestCase.test_cases(suite)

::RdfContext::debug = debug

puts test_cases.length

test_cases = test_cases.detect do |tc|
  next unless ARGV.empty? || ARGV.any? {|n| tc.name.match(/#{n}/)}
  run_tc(tc)
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rdf_context-0.5.9.1 script/tc
rdf_context-0.5.9 script/tc