1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
|
require 'beaker-hostgenerator/parser'
module BeakerHostGenerator
describe Parser do
include BeakerHostGenerator::Parser
describe 'prepare' do
it 'Supports URL-encoded input' do
expect( prepare('centos6-64m%7Bfoo=bar-baz,this=that,foo=%5Bbar,baz%5D,this=%5Bthat%5D%7D-32a') ).
to eq('centos6-64m{foo=bar-baz,this=that,foo=[bar,baz],this=[that]}-32a')
end
end
describe 'parse_node_info_token' do
it 'Raises InvalidNodeSpecError for invalid tokens.' do
expect { parse_node_info_token("64compile_master") }.
to raise_error(BeakerHostGenerator::Exceptions::InvalidNodeSpecError)
end
it 'Supports no roles in the spec.' do
expect( parse_node_info_token("64") ).
to eq({
"roles" => "",
"arbitrary_roles" => [],
"bits" => "64",
"host_settings" => {}
})
end
context 'When specifying architecture bits' do
it 'Supports uppercase alphanumeric architecture bits' do
expect( parse_node_info_token("SPARC") ).
to eq({
"roles" => "",
"arbitrary_roles" => [],
"bits" => "SPARC",
"host_settings" => {}
})
expect( parse_node_info_token("POWER6") ).
to eq({
"roles" => "",
"arbitrary_roles" => [],
"bits" => "POWER6",
"host_settings" => {}
})
expect( parse_node_info_token("S390X") ).
to eq({
"roles" => "",
"arbitrary_roles" => [],
"bits" => "S390X",
"host_settings" => {}
})
end
it 'Trailing lowercase characters are parsed as roles' do
expect( parse_node_info_token("S390Xm") ).
to eq({
"roles" => "m",
"arbitrary_roles" => [],
"bits" => "S390X",
"host_settings" => {}
})
expect( parse_node_info_token("S390Xcustom.m") ).
to eq({
"roles" => "m",
"arbitrary_roles" => ["custom"],
"bits" => "S390X",
"host_settings" => {}
})
end
it 'Rejects lowercase characters that are not at the end' do
expect { parse_node_info_token("AbC3") }.
to raise_error(BeakerHostGenerator::Exceptions::InvalidNodeSpecError)
expect { parse_node_info_token("aBC3") }.
to raise_error(BeakerHostGenerator::Exceptions::InvalidNodeSpecError)
end
end
it 'Supports the use of arbitrary roles.' do
expect( parse_node_info_token("64compile_master,ca,blah.mad") ).
to eq({
"roles" => "mad",
"arbitrary_roles" => ["compile_master", "ca", "blah"],
"bits" => "64",
"host_settings" => {}
})
end
context 'When using arbitrary roles' do
it 'Fails without a role-type delimiter (a period)' do
expect { parse_node_info_token("64compile_master,ca,blah") }.
to raise_error(BeakerHostGenerator::Exceptions::InvalidNodeSpecError)
end
it 'It supports no static roles.' do
expect( parse_node_info_token("64compile_master,ca,blah.") ).
to eq({
"roles" => "",
"arbitrary_roles" => ["compile_master", "ca", "blah"],
"bits" => "64",
"host_settings" => {}
})
end
end
context 'When using arbitrary host settings' do
it 'Supports arbitrary nested hashes and arrays' do
expect( parse_node_info_token("64{foo={bar=baz},foo2={bar2=baz2,bar22=baz22},foo3=bar3,foo4=[[bar4],baz4],list=[{map1=map11,map2=map22},{lastmap=lastmap2}]}") ).
to eq({
"roles" => "",
"arbitrary_roles" => [],
"bits" => "64",
"host_settings" =>
{"foo"=>{"bar"=>"baz"},
"foo2"=>{"bar2"=>"baz2", "bar22"=>"baz22"},
"foo3"=>"bar3",
"foo4"=>[["bar4"], "baz4"],
"list"=>[{"map1"=>"map11", "map2"=>"map22"}, {"lastmap"=>"lastmap2"}]}})
end
it 'Supports arbitrary whitespace in values' do
expect( parse_node_info_token("64{k1=value 1,k2=v2,k3= v3 ,k4=[v4, v5 ,v6]}") ).
to eq({
"roles" => "",
"arbitrary_roles" => [],
"bits" => "64",
"host_settings" => {
"k1" => "value 1",
"k2" => "v2",
"k3" => " v3 ",
"k4" => ["v4"," v5 ","v6"]
}
})
end
it 'Raises InvalidNodeSpecError for malformed key-value pairs' do
expect { parse_node_info_token("64{foo=bar=baz}") }.
to raise_error(BeakerHostGenerator::Exceptions::InvalidNodeSpecError)
expect { parse_node_info_token("64{foo=}") }.
to raise_error(BeakerHostGenerator::Exceptions::InvalidNodeSpecError)
expect { parse_node_info_token("64{=bar}") }.
to raise_error(BeakerHostGenerator::Exceptions::InvalidNodeSpecError)
expect { parse_node_info_token("64{=}") }.
to raise_error(BeakerHostGenerator::Exceptions::InvalidNodeSpecError)
end
end
end
end
end
|