42 lines
1 KiB
Ruby
42 lines
1 KiB
Ruby
require 'spec_helper'
|
|
require 'mm2ep_depend'
|
|
|
|
describe Mm2ep::Depend::Parser do
|
|
let(:parser) do
|
|
Mm2ep::Depend::Parser.new(Mm2ep::Depend::Lexer.new)
|
|
end
|
|
|
|
it 'has to do not before or' do
|
|
line = 'NOT true OR NOT true'
|
|
token = parser.parse(line)
|
|
assert_equal('( NOT ( bool:true ) ) OR ( NOT ( bool:true ) )', token.to_s)
|
|
end
|
|
|
|
it 'has to do not before and' do
|
|
line = 'NOT false AND NOT false'
|
|
token = parser.parse(line)
|
|
assert_equal(
|
|
'( NOT ( bool:false ) ) AND ( NOT ( bool:false ) )',
|
|
token.to_s
|
|
)
|
|
end
|
|
|
|
it 'has to do and before or' do
|
|
line = 'false OR true AND false'
|
|
token = parser.parse(line)
|
|
assert_equal(
|
|
'( bool:false ) OR ( ( bool:true ) AND ( bool:false ) )',
|
|
token.to_s
|
|
)
|
|
end
|
|
|
|
it 'has to do and before or operators' do
|
|
line = 'false OR false AND true OR true'
|
|
token = parser.parse(line)
|
|
assert_equal(
|
|
'( ( bool:false ) OR ( ( bool:false ) '\
|
|
'AND ( bool:true ) ) ) OR ( bool:true )',
|
|
token.to_s
|
|
)
|
|
end
|
|
end
|