[tests] rearrange to match new lib structure

This commit is contained in:
geemus 2011-09-08 16:37:58 -05:00
Родитель 3a17ba2249
Коммит fcc5a1c224
100 изменённых файлов: 0 добавлений и 49 удалений

Просмотреть файл

@ -1,49 +0,0 @@
require 'fog/aws/parsers/compute/monitor_unmonitor_instances'
Shindo.tests('Compute::AWS::MonitorUnmonitorInstances | monitor/unmonitor parser') do
tests('success') do
tests('#parse') do
aws_result = <<-AWS
<UnmonitorInstancesResponse xmlns="http://ec2.amazonaws.com/doc/2010-11-15/">
<requestId>59dbff89-35bd-4eac-99ed-be587EXAMPLE</requestId>
<instancesSet>
<item>
<instanceId>i-43a4412a</instanceId>
<monitoring>
<state>enabled</state>
</monitoring>
</item>
<item>
<instanceId>i-23a3397d</instanceId>
<monitoring>
<state>disabled</state>
</monitoring>
</item>
</instancesSet>
</UnmonitorInstancesResponse>
AWS
parser = Fog::Parsers::Compute::AWS::MonitorUnmonitorInstances.new
body = Nokogiri::XML::SAX::PushParser.new(parser)
body << aws_result
test('requestId') { parser.response['requestId'] == '59dbff89-35bd-4eac-99ed-be587EXAMPLE' }
test('enabled') do
selected = parser.response['instancesSet'].select { |item| item['instanceId'] == 'i-43a4412a' }[0]
selected['monitoring'] == 'enabled'
end
test('disabled') do
selected = parser.response['instancesSet'].select { |item| item['instanceId'] == 'i-23a3397d' }[0]
selected['monitoring'] == 'disabled'
end
end
end
end