Sha256: 65119777b217ced6a796f6f0f02dee634a85fdf0aa3f8667d1ed7a50fbf40dbe

Contents?: true

Size: 1.52 KB

Versions: 6

Compression:

Stored size: 1.52 KB

Contents

require 'bundler/gem_tasks'
require 'junoser/development'
require 'nokogiri'
require 'pathname'
require 'rake/testtask'

xsd_path = File.join(__dir__, 'tmp/junos-system-17.2.xsd')
rule_path = File.join(__dir__, 'tmp/rule.rb')
ruby_parser_path = File.join(__dir__, 'lib/junoser/parser.rb')
js_parser_path = File.join(__dir__, 'tmp/schema.js')

def open_files(input, output, &block)
  i = open(input)
  o = open(output, 'w')

  yield i, o

  i.close
  o.close
end


namespace :build do
  desc 'Build an intermediate config hierarchy'
  task :config do
    open_files(xsd_path, rule_path) do |input, output|
      Nokogiri::XML(input).root.remove_unused.xpath('/xsd:schema/*').each do |e|
        output.puts e.to_config
      end
    end
  end

  desc 'Build ruby parser'
  task :rule do
    open_files(rule_path, ruby_parser_path) do |input, output|
      output.puts Junoser::Ruler.new(input).to_rule
    end
  end

  desc 'Build javascript parser'
  task :jsrule do
    open_files(rule_path, js_parser_path) do |input, output|
      output.puts Junoser::JsRuler.new(input).to_rule
    end
  end
end

task 'find-srx-methods' do
  vsrx = File.read('vsrx.rb')
  vmx = File.read('lib/junoser/parser.rb')

  vsrx.scan(/^ +([0-9a-z_]+) *$/).flatten.uniq.sort.each do |method|
    next if ['arg', 'end', 'ipaddr', 'time'].include?(method)

    puts method unless vsrx =~ /rule\(:#{method}\)/m || vmx =~ /rule\(:#{method}\)/m
  end
end


Rake::TestTask.new do |t|
  t.libs << 'test'

  t.verbose = true
  t.warning = false
end

desc 'Run tests'
task default: :test

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
junoser-0.3.13 Rakefile
junoser-0.3.12 Rakefile
junoser-0.3.11 Rakefile
junoser-0.3.10 Rakefile
junoser-0.3.9 Rakefile
junoser-0.3.8 Rakefile