File: database_tests.rb

package info (click to toggle)
ruby-fog-rackspace 0.1.6-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 3,652 kB
  • sloc: ruby: 27,055; sh: 4; makefile: 3
file content (29 lines) | stat: -rw-r--r-- 827 bytes parent folder | download | duplicates (4)
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
Shindo.tests('Fog::Rackspace::Databases | database', ['rackspace']) do

  pending if Fog.mocking?

  service = Fog::Rackspace::Databases.new
  instance = service.instances.create({
    :name => "fog_instance_#{Time.now.to_i.to_s}",
    :flavor_id => 1,
    :volume_size => 1
  })

  instance.wait_for { ready? }

  model_tests(instance.databases, { :name => "db_#{Time.now.to_i.to_s}" }, false)

  user_no_host = instance.users.create(:name => "foo", :password => "foo")
  user_with_host = instance.users.create(:name => "bar", :host => "10.20.30.40", :password => "bar")
    
  db = instance.databases.create(:name => "Test_#{Time.now.to_i}")

  db.grant_access_for(user_no_host)
  db.grant_access_for(user_with_host)
  
  db.revoke_access_for(user_no_host)
  db.revoke_access_for(user_with_host)
    

  instance.destroy
end