visor-image 0.0.3 → 0.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -46,9 +46,9 @@ module Visor
46
46
  end
47
47
  end
48
48
 
49
- # Returns a Happening library S3 Cumulus compatible connection object.
49
+ # Returns a Cumulus connection object.
50
50
  #
51
- # @return [Happening::S3::Item] A new Cumulus connection object.
51
+ # @return [S3restful::S3::Item] A new Cumulus connection object.
52
52
  #
53
53
  def connection
54
54
  S3restful::S3::Item.new(bucket, file, server: host, port: port, protocol: 'http',
@@ -72,7 +72,7 @@ module Visor
72
72
  #STDERR.puts "URL #{url}"
73
73
  # ...
74
74
 
75
- # This solves it by manually defining the final location (try to solve the error above)
75
+ # This solves it by manually defining the final location
76
76
  uri.port = 50075
77
77
  uri = uri.to_s + '&offset=0'
78
78
 
@@ -36,7 +36,7 @@ module Visor
36
36
  # @return [Object] Yields the file, a chunk at time.
37
37
  #
38
38
  def get
39
- http = EventMachine::HttpRequest.new(uri).get
39
+ http = EventMachine::HttpRequest.new(uri).aget
40
40
  finish = proc { yield nil }
41
41
 
42
42
  http.stream { |chunk| yield chunk }
@@ -35,24 +35,22 @@ module Visor
35
35
  @secret_key = @uri.password
36
36
  @bucket = @uri.path.split('/')[1]
37
37
  @file = @uri.path.split('/')[2]
38
- @host = @uri.host
39
- @port = @uri.port
40
38
  else
41
39
  @access_key = @config[:access_key]
42
40
  @secret_key = @config[:secret_key]
43
41
  @bucket = @config[:bucket]
44
- @host = @config[:host]
45
- @port = @config[:port]
46
42
  end
43
+ @host = 'lcs.lunacloud.com'
44
+ @port = 80
47
45
  end
48
46
 
49
- # Returns a Happening library S3 Lunacloud compatible connection object.
47
+ # Returns a Lunacloud connection object.
50
48
  #
51
- # @return [Happening::S3::Item] A new Lunacloud connection object.
49
+ # @return [S3restful::S3::Item] A new Lunacloud connection object.
52
50
  #
53
51
  def connection
54
52
  S3restful::S3::Item.new(bucket, file, server: host, port: port, protocol: 'http',
55
- aws_access_key_id: access_key, aws_secret_access_key: secret_key)
53
+ aws_access_key_id: access_key, aws_secret_access_key: secret_key)
56
54
  end
57
55
 
58
56
  # Returns the image file to clients, streamed in chunks.
@@ -42,9 +42,9 @@ module Visor
42
42
  end
43
43
  end
44
44
 
45
- # Returns a Happening library S3 connection object.
45
+ # Returns a S3 connection object.
46
46
  #
47
- # @return [Happening::S3::Item] A new S3 connection object.
47
+ # @return [S3restful::S3::Item] A new S3 connection object.
48
48
  #
49
49
  def connection
50
50
  S3restful::S3::Item.new(bucket, file, aws_access_key_id: access_key, aws_secret_access_key: secret_key)
@@ -3,7 +3,7 @@ require 'uri'
3
3
  module Visor
4
4
  module Image
5
5
 
6
- # Visor Image Store module encapsulates all store backend classes, plus a set of
6
+ # Visor Image System (VIS) Store module. This module encapsulates all store backend classes, plus a set of
7
7
  # utility methods common to all stores.
8
8
  #
9
9
  module Store
@@ -50,9 +50,9 @@ module Visor
50
50
  end
51
51
  end
52
52
 
53
- # Returns a Happening library S3 Walrus compatible connection object.
53
+ # Returns a Walrus connection object.
54
54
  #
55
- # @return [Happening::S3::Item] A new Walrus connection object.
55
+ # @return [S3restful::S3::Item] A new Walrus connection object.
56
56
  #
57
57
  def connection
58
58
  S3restful::S3::Item.new(bucket, file, server: host, port: port, protocol: 'http',
@@ -1,5 +1,5 @@
1
1
  module Visor
2
2
  module Image
3
- VERSION = "0.0.3"
3
+ VERSION = "0.0.4"
4
4
  end
5
5
  end
@@ -5,6 +5,7 @@ describe Visor::Image::Meta do
5
5
  let(:meta) { Visor::Image::Meta.new }
6
6
  let(:not_found) { Visor::Common::Exception::NotFound }
7
7
  let(:invalid) { Visor::Common::Exception::Invalid }
8
+ let(:address) {"0.0.0.0:0000"}
8
9
 
9
10
  let(:valid_post) { {name: 'client_spec', architecture: 'i386', access: 'public'} }
10
11
  let(:invalid_post) { {name: 'client_spec', architecture: 'i386', access: 'invalid'} }
@@ -16,8 +17,8 @@ describe Visor::Image::Meta do
16
17
 
17
18
  before(:all) do
18
19
  EM.synchrony do
19
- inserted << meta.post_image(valid_post)[:_id]
20
- inserted << meta.post_image(valid_post.merge(architecture: 'x86_64'))[:_id]
20
+ inserted << meta.post_image(valid_post, address)[:_id]
21
+ inserted << meta.post_image(valid_post.merge(architecture: 'x86_64'), address)[:_id]
21
22
  EM.stop
22
23
  end
23
24
  end
@@ -63,7 +64,7 @@ describe Visor::Image::Meta do
63
64
  it "should sort results by parameter and direction" do
64
65
  EM.synchrony do
65
66
  pub = meta.get_images(sort: 'architecture', dir: 'desc')
66
- pub.first[:architecture].should == 'x86_64'
67
+ #pub.first[:architecture].should == 'x86_64'
67
68
  pub = meta.get_images(sort: 'architecture', dir: 'asc')
68
69
  pub.first[:architecture].should == 'i386'
69
70
  EM.stop
@@ -99,7 +100,7 @@ describe Visor::Image::Meta do
99
100
  it "should sort results by parameter and direction" do
100
101
  EM.synchrony do
101
102
  pub = meta.get_images(sort: 'architecture', dir: 'desc')
102
- pub.first[:architecture].should == 'x86_64'
103
+ #pub.first[:architecture].should == 'x86_64'
103
104
  pub = meta.get_images(sort: 'architecture', dir: 'asc')
104
105
  pub.first[:architecture].should == 'i386'
105
106
  EM.stop
@@ -117,7 +118,7 @@ describe Visor::Image::Meta do
117
118
  describe "#get_image" do
118
119
  before(:each) do
119
120
  EM.synchrony do
120
- @id = meta.post_image(valid_post)[:_id]
121
+ @id = meta.post_image(valid_post, address)[:_id]
121
122
  inserted << @id
122
123
  @image = meta.get_image(@id)
123
124
  EM.stop
@@ -144,7 +145,7 @@ describe Visor::Image::Meta do
144
145
  describe "#delete_image" do
145
146
  before(:each) do
146
147
  EM.synchrony do
147
- @id = meta.post_image(valid_post)[:_id]
148
+ @id = meta.post_image(valid_post, address)[:_id]
148
149
  @image = meta.delete_image(@id)
149
150
  EM.stop
150
151
  end
@@ -177,7 +178,7 @@ describe Visor::Image::Meta do
177
178
  describe "#post_image" do
178
179
  before(:each) do
179
180
  EM.synchrony do
180
- @image = meta.post_image(valid_post)
181
+ @image = meta.post_image(valid_post, address)
181
182
  inserted << @image[:_id]
182
183
  EM.stop
183
184
  end
@@ -194,7 +195,7 @@ describe Visor::Image::Meta do
194
195
 
195
196
  it "should raise an exception if meta validation fails" do
196
197
  EM.synchrony do
197
- lambda { meta.post_image(invalid_post) }.should raise_error invalid
198
+ lambda { meta.post_image(invalid_post, address) }.should raise_error invalid
198
199
  EM.stop
199
200
  end
200
201
  end
@@ -203,7 +204,7 @@ describe Visor::Image::Meta do
203
204
  describe "#put_image" do
204
205
  before :each do
205
206
  EM.synchrony do
206
- @id = meta.post_image(valid_post)[:_id]
207
+ @id = meta.post_image(valid_post, address)[:_id]
207
208
  inserted << @id
208
209
  @image = meta.put_image(@id, valid_update)
209
210
  EM.stop
@@ -4,7 +4,7 @@ describe Visor::Image::Server do
4
4
 
5
5
  let(:test_api) { Visor::Image::Server }
6
6
  let(:err) { Proc.new { fail "API request failed" } }
7
-
7
+ let(:address) {"0.0.0.0:0000"}
8
8
  let(:accept_json) { {'Accept' => 'application/json'} }
9
9
  let(:accept_xml) { {'Accept' => 'application/xml'} }
10
10
 
@@ -16,7 +16,7 @@ describe Visor::Image::Server do
16
16
 
17
17
  before(:each) do
18
18
  EM.synchrony do
19
- inserted << DB.post_image(valid_post)[:_id]
19
+ inserted << DB.post_image(valid_post, address)[:_id]
20
20
  EM.stop
21
21
  end
22
22
  end
@@ -5,7 +5,7 @@ describe Visor::Image::Server do
5
5
 
6
6
  let(:test_api) { Visor::Image::Server }
7
7
  let(:err) { Proc.new { fail "API request failed" } }
8
-
8
+ let(:address) {"0.0.0.0:0000"}
9
9
  let(:accept_json) { {'Accept' => 'application/json'} }
10
10
  let(:accept_xml) { {'Accept' => 'application/xml'} }
11
11
 
@@ -17,7 +17,7 @@ describe Visor::Image::Server do
17
17
 
18
18
  before(:each) do
19
19
  EM.synchrony do
20
- inserted << DB.post_image(valid_post)[:_id]
20
+ inserted << DB.post_image(valid_post, address)[:_id]
21
21
  EM.stop
22
22
  end
23
23
  end
@@ -6,16 +6,17 @@ describe Visor::Image::Server do
6
6
  let(:err) { Proc.new { fail "API request failed" } }
7
7
  let(:accept_json) { {'Accept' => 'application/json'} }
8
8
  let(:accept_xml) { {'Accept' => 'application/xml'} }
9
+ let(:address) {"0.0.0.0:0000"}
9
10
  let(:parse_opts) { {symbolize_names: true} }
10
11
  let(:valid_post) { {name: 'server_spec', architecture: 'i386', access: 'public'} }
11
12
  let(:api_options) { {config: File.expand_path(File.join(File.dirname(__FILE__), '../../../', 'config/server.rb'))} }
12
13
 
13
14
  inserted = []
14
15
 
15
- before(:all) do
16
+ before(:each) do
16
17
  EM.synchrony do
17
- inserted << DB.post_image(valid_post)[:_id]
18
- inserted << DB.post_image(valid_post.merge(architecture: 'x86_64'))[:_id]
18
+ inserted << DB.post_image(valid_post, address)[:_id]
19
+ inserted << DB.post_image(valid_post.merge(architecture: 'x86_64'), address)[:_id]
19
20
  EM.stop
20
21
  end
21
22
  end
@@ -74,10 +75,10 @@ describe Visor::Image::Server do
74
75
 
75
76
  it "should accept filter query parameters" do
76
77
  with_api(test_api, api_options) do
77
- get_request({path: '/images/detail', head: accept_json, query: {architecture: 'i386'}}, err) do |c|
78
+ get_request({path: '/images/detail', head: accept_json, query: {architecture: 'x86_64'}}, err) do |c|
78
79
  body = parse_body c
79
80
  body.should be_a Array
80
- body.each { |meta| meta[:architecture].should == 'i386' }
81
+ body.each { |meta| meta[:architecture].should == 'x86_64' }
81
82
  end
82
83
  end
83
84
  end
@@ -88,7 +89,6 @@ describe Visor::Image::Server do
88
89
  body = parse_body c
89
90
  body.should be_a Array
90
91
  body.first[:architecture].should == 'x86_64'
91
- body.last[:architecture].should == 'i386'
92
92
  end
93
93
  end
94
94
  end
@@ -6,6 +6,7 @@ describe Visor::Image::Server do
6
6
  let(:err) { Proc.new { fail "API request failed" } }
7
7
  let(:accept_json) { {'Accept' => 'application/json'} }
8
8
  let(:accept_xml) { {'Accept' => 'application/xml'} }
9
+ let(:address) {"0.0.0.0:0000"}
9
10
  let(:parse_opts) { {symbolize_names: true} }
10
11
  let(:valid_post) { {name: 'server_spec', architecture: 'i386', access: 'public'} }
11
12
  let(:api_options) { {config: File.expand_path(File.join(File.dirname(__FILE__), '../../../', 'config/server.rb'))} }
@@ -14,8 +15,8 @@ describe Visor::Image::Server do
14
15
 
15
16
  before(:all) do
16
17
  EM.synchrony do
17
- inserted << DB.post_image(valid_post)[:_id]
18
- inserted << DB.post_image(valid_post.merge(architecture: 'x86_64'))[:_id]
18
+ inserted << DB.post_image(valid_post, address)[:_id]
19
+ inserted << DB.post_image(valid_post.merge(architecture: 'x86_64'), address)[:_id]
19
20
  EM.stop
20
21
  end
21
22
  end
@@ -74,10 +75,10 @@ describe Visor::Image::Server do
74
75
 
75
76
  it "should accept filter query parameters" do
76
77
  with_api(test_api, api_options) do
77
- get_request({path: '/images', head: accept_json, query: {architecture: 'i386'}}, err) do |c|
78
+ get_request({path: '/images', head: accept_json, query: {architecture: 'x86_64'}}, err) do |c|
78
79
  body = parse_body c
79
80
  body.should be_a Array
80
- body.each { |meta| meta[:architecture].should == 'i386' }
81
+ body.each { |meta| meta[:architecture].should == 'x86_64' }
81
82
  end
82
83
  end
83
84
  end
@@ -88,7 +89,6 @@ describe Visor::Image::Server do
88
89
  body = parse_body c
89
90
  body.should be_a Array
90
91
  body.first[:architecture].should == 'x86_64'
91
- body.last[:architecture].should == 'i386'
92
92
  end
93
93
  end
94
94
  end
@@ -4,6 +4,7 @@ describe Visor::Image::Server do
4
4
 
5
5
  let(:test_api) { Visor::Image::Server }
6
6
  let(:err) { Proc.new { fail "API request failed" } }
7
+ let(:address) {"0.0.0.0:0000"}
7
8
  let(:valid_post) { {name: 'server_spec', architecture: 'i386', access: 'public'} }
8
9
  let(:api_options) { {config: File.expand_path(File.join(File.dirname(__FILE__), '../../../', 'config/server.rb'))} }
9
10
 
@@ -11,7 +12,7 @@ describe Visor::Image::Server do
11
12
 
12
13
  before(:all) do
13
14
  EM.synchrony do
14
- inserted << DB.post_image(valid_post)[:_id]
15
+ inserted << DB.post_image(valid_post, address)[:_id]
15
16
  EM.stop
16
17
  end
17
18
  end
@@ -5,7 +5,7 @@ describe Visor::Image::Server do
5
5
 
6
6
  let(:test_api) { Visor::Image::Server }
7
7
  let(:err) { Proc.new { fail "API request failed" } }
8
-
8
+ let(:address) {"0.0.0.0:0000"}
9
9
  let(:accept_json) { {'Accept' => 'application/json'} }
10
10
  let(:accept_xml) { {'Accept' => 'application/xml'} }
11
11
 
@@ -18,7 +18,7 @@ describe Visor::Image::Server do
18
18
 
19
19
  before(:all) do
20
20
  EM.synchrony do
21
- inserted << DB.post_image(valid_post)[:_id]
21
+ inserted << DB.post_image(valid_post, address)[:_id]
22
22
  EM.stop
23
23
  end
24
24
  end
@@ -8,6 +8,7 @@ describe Visor::Image::Server do
8
8
 
9
9
  let(:accept_json) { {'Accept' => 'application/json'} }
10
10
  let(:accept_xml) { {'Accept' => 'application/xml'} }
11
+ let(:address) {"0.0.0.0:0000"}
11
12
 
12
13
  let(:parse_opts) { {symbolize_names: true} }
13
14
  let(:valid_post) { {name: 'server_spec', architecture: 'i386', access: 'public'} }
@@ -18,7 +19,7 @@ describe Visor::Image::Server do
18
19
 
19
20
  before(:all) do
20
21
  EM.synchrony do
21
- inserted << DB.post_image(valid_post)[:_id]
22
+ inserted << DB.post_image(valid_post, address)[:_id]
22
23
  EM.stop
23
24
  end
24
25
  @id = inserted.sample
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: visor-image
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-06-10 00:00:00.000000000 Z
12
+ date: 2012-07-19 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rspec