vnctools 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +4 -0
- data/.rspec +1 -0
- data/Gemfile +4 -0
- data/LICENSE +202 -0
- data/README +0 -0
- data/Rakefile +6 -0
- data/lib/vnctools/recorder.rb +37 -0
- data/lib/vnctools/server.rb +68 -0
- data/lib/vnctools/server_pool.rb +68 -0
- data/lib/vnctools/version.rb +3 -0
- data/lib/vnctools.rb +11 -0
- data/spec/spec_helper.rb +11 -0
- data/spec/vnctools/recorder_spec.rb +44 -0
- data/spec/vnctools/server_pool_spec.rb +59 -0
- data/spec/vnctools/server_spec.rb +49 -0
- data/vnctools.gemspec +25 -0
- metadata +107 -0
data/.gitignore
ADDED
data/.rspec
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
--color
|
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,202 @@
|
|
1
|
+
|
2
|
+
Apache License
|
3
|
+
Version 2.0, January 2004
|
4
|
+
http://www.apache.org/licenses/
|
5
|
+
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
7
|
+
|
8
|
+
1. Definitions.
|
9
|
+
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
12
|
+
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
14
|
+
the copyright owner that is granting the License.
|
15
|
+
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
17
|
+
other entities that control, are controlled by, or are under common
|
18
|
+
control with that entity. For the purposes of this definition,
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
20
|
+
direction or management of such entity, whether by contract or
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
23
|
+
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
25
|
+
exercising permissions granted by this License.
|
26
|
+
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
28
|
+
including but not limited to software source code, documentation
|
29
|
+
source, and configuration files.
|
30
|
+
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
32
|
+
transformation or translation of a Source form, including but
|
33
|
+
not limited to compiled object code, generated documentation,
|
34
|
+
and conversions to other media types.
|
35
|
+
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
37
|
+
Object form, made available under the License, as indicated by a
|
38
|
+
copyright notice that is included in or attached to the work
|
39
|
+
(an example is provided in the Appendix below).
|
40
|
+
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
47
|
+
the Work and Derivative Works thereof.
|
48
|
+
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
50
|
+
the original version of the Work and any modifications or additions
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
62
|
+
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
65
|
+
subsequently incorporated within the Work.
|
66
|
+
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
73
|
+
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
79
|
+
where such license applies only to those patent claims licensable
|
80
|
+
by such Contributor that are necessarily infringed by their
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
83
|
+
institute patent litigation against any entity (including a
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
86
|
+
or contributory patent infringement, then any patent licenses
|
87
|
+
granted to You under this License for that Work shall terminate
|
88
|
+
as of the date such litigation is filed.
|
89
|
+
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
92
|
+
modifications, and in Source or Object form, provided that You
|
93
|
+
meet the following conditions:
|
94
|
+
|
95
|
+
(a) You must give any other recipients of the Work or
|
96
|
+
Derivative Works a copy of this License; and
|
97
|
+
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
99
|
+
stating that You changed the files; and
|
100
|
+
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
103
|
+
attribution notices from the Source form of the Work,
|
104
|
+
excluding those notices that do not pertain to any part of
|
105
|
+
the Derivative Works; and
|
106
|
+
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
109
|
+
include a readable copy of the attribution notices contained
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
112
|
+
of the following places: within a NOTICE text file distributed
|
113
|
+
as part of the Derivative Works; within the Source form or
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
115
|
+
within a display generated by the Derivative Works, if and
|
116
|
+
wherever such third-party notices normally appear. The contents
|
117
|
+
of the NOTICE file are for informational purposes only and
|
118
|
+
do not modify the License. You may add Your own attribution
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
121
|
+
that such additional attribution notices cannot be construed
|
122
|
+
as modifying the License.
|
123
|
+
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
125
|
+
may provide additional or different license terms and conditions
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
129
|
+
the conditions stated in this License.
|
130
|
+
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
134
|
+
this License, without any additional terms or conditions.
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
136
|
+
the terms of any separate license agreement you may have executed
|
137
|
+
with Licensor regarding such Contributions.
|
138
|
+
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
141
|
+
except as required for reasonable and customary use in describing the
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
143
|
+
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
153
|
+
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
159
|
+
incidental, or consequential damages of any character arising as a
|
160
|
+
result of this License or out of the use or inability to use the
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
163
|
+
other commercial damages or losses), even if such Contributor
|
164
|
+
has been advised of the possibility of such damages.
|
165
|
+
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
169
|
+
or other liability obligations and/or rights consistent with this
|
170
|
+
License. However, in accepting such obligations, You may act only
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
175
|
+
of your accepting any such warranty or additional liability.
|
176
|
+
|
177
|
+
END OF TERMS AND CONDITIONS
|
178
|
+
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
180
|
+
|
181
|
+
To apply the Apache License to your work, attach the following
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
183
|
+
replaced with your own identifying information. (Don't include
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
185
|
+
comment syntax for the file format. We also recommend that a
|
186
|
+
file or class name and description of purpose be included on the
|
187
|
+
same "printed page" as the copyright notice for easier
|
188
|
+
identification within third-party archives.
|
189
|
+
|
190
|
+
Copyright [2011] [Jari Bakken]
|
191
|
+
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
193
|
+
you may not use this file except in compliance with the License.
|
194
|
+
You may obtain a copy of the License at
|
195
|
+
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
197
|
+
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
201
|
+
See the License for the specific language governing permissions and
|
202
|
+
limitations under the License.
|
data/README
ADDED
File without changes
|
data/Rakefile
ADDED
@@ -0,0 +1,37 @@
|
|
1
|
+
module VncTools
|
2
|
+
class Recorder
|
3
|
+
|
4
|
+
attr_reader :display, :output
|
5
|
+
|
6
|
+
def initialize(display, output, opts = {})
|
7
|
+
@display = display
|
8
|
+
@output = output
|
9
|
+
@options = opts
|
10
|
+
end
|
11
|
+
|
12
|
+
def start
|
13
|
+
@process = ChildProcess.build(
|
14
|
+
"ffmpeg",
|
15
|
+
"-an", # no audio,
|
16
|
+
"-f", "x11grab", # force format
|
17
|
+
"-y", # overwrite output files
|
18
|
+
"-r", @options[:frame_rate] || "5", # frame rate
|
19
|
+
"-s", @options[:frame_size] || "1024x768", # frame size
|
20
|
+
"-i", "#{display}.0+0,0", # display :1
|
21
|
+
"-vcodec", @options[:codec] || "mpeg4", # video codec
|
22
|
+
"-sameq", output # output
|
23
|
+
)
|
24
|
+
|
25
|
+
@process.io.inherit! if $DEBUG
|
26
|
+
@process.start
|
27
|
+
|
28
|
+
if @process.crashed?
|
29
|
+
raise Error, "ffmpeg failed, run with $DEBUG = true for full output"
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
def stop
|
34
|
+
@process && @process.stop
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
@@ -0,0 +1,68 @@
|
|
1
|
+
require "socket"
|
2
|
+
|
3
|
+
module VncTools
|
4
|
+
class Server
|
5
|
+
|
6
|
+
class Error < StandardError
|
7
|
+
end
|
8
|
+
|
9
|
+
class << self
|
10
|
+
def displays
|
11
|
+
Dir[File.expand_path("~/.vnc/*.pid")].map { |e| e[/(\d+)\.pid/, 1] }.compact
|
12
|
+
end
|
13
|
+
|
14
|
+
def all
|
15
|
+
displays.map { |display| new ":#{display}" }
|
16
|
+
end
|
17
|
+
|
18
|
+
attr_writer :executable
|
19
|
+
|
20
|
+
def executable
|
21
|
+
@executable ||= "tightvncserver"
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
attr_reader :display
|
26
|
+
|
27
|
+
def initialize(display = nil)
|
28
|
+
@display = display
|
29
|
+
end
|
30
|
+
|
31
|
+
def start
|
32
|
+
if display
|
33
|
+
server display
|
34
|
+
else
|
35
|
+
output = server
|
36
|
+
@display = output[/desktop is #{host}(\S+)/, 1]
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
def stop
|
41
|
+
server "-kill", display.to_s
|
42
|
+
end
|
43
|
+
|
44
|
+
private
|
45
|
+
|
46
|
+
def server(*args)
|
47
|
+
cmd = [self.class.executable, args, '2>&1'].flatten.compact
|
48
|
+
out = `#{cmd.join ' '}`
|
49
|
+
|
50
|
+
unless last_status.success?
|
51
|
+
raise Error, "could not run #{self.class.executable}: #{out.inspect}"
|
52
|
+
end
|
53
|
+
|
54
|
+
out
|
55
|
+
end
|
56
|
+
|
57
|
+
def last_status
|
58
|
+
$?
|
59
|
+
end
|
60
|
+
|
61
|
+
def host
|
62
|
+
@host ||= Socket.gethostname
|
63
|
+
end
|
64
|
+
end # VncServer
|
65
|
+
end # CukeForker
|
66
|
+
|
67
|
+
|
68
|
+
|
@@ -0,0 +1,68 @@
|
|
1
|
+
module VncTools
|
2
|
+
class ServerPool
|
3
|
+
include Observable
|
4
|
+
|
5
|
+
def initialize(capacity, klass = Server)
|
6
|
+
@capacity = capacity
|
7
|
+
@servers = Array.new(capacity) { klass.new }
|
8
|
+
@running = []
|
9
|
+
end
|
10
|
+
|
11
|
+
def stop
|
12
|
+
running.each do |s|
|
13
|
+
fire :on_display_stopping, s
|
14
|
+
s.stop
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
def size
|
19
|
+
@servers.size
|
20
|
+
end
|
21
|
+
|
22
|
+
def get
|
23
|
+
raise OutOfDisplaysError if @servers.empty?
|
24
|
+
|
25
|
+
server = next_server
|
26
|
+
fire :on_display_fetched, server
|
27
|
+
|
28
|
+
server
|
29
|
+
end
|
30
|
+
|
31
|
+
def release(server)
|
32
|
+
raise TooManyDisplaysError if size == @capacity
|
33
|
+
fire :on_display_released, server
|
34
|
+
|
35
|
+
@servers.unshift server
|
36
|
+
end
|
37
|
+
|
38
|
+
private
|
39
|
+
|
40
|
+
def fire(*args)
|
41
|
+
changed
|
42
|
+
notify_observers(*args)
|
43
|
+
end
|
44
|
+
|
45
|
+
def running
|
46
|
+
@running
|
47
|
+
end
|
48
|
+
|
49
|
+
def next_server
|
50
|
+
server = @servers.shift
|
51
|
+
|
52
|
+
if server.display.nil?
|
53
|
+
fire :on_display_starting, server
|
54
|
+
server.start
|
55
|
+
@running << server
|
56
|
+
end
|
57
|
+
|
58
|
+
server
|
59
|
+
end
|
60
|
+
|
61
|
+
class TooManyDisplaysError < StandardError
|
62
|
+
end
|
63
|
+
|
64
|
+
class OutOfDisplaysError < StandardError
|
65
|
+
end
|
66
|
+
|
67
|
+
end # DisplayPool
|
68
|
+
end # CukeForker
|
data/lib/vnctools.rb
ADDED
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,44 @@
|
|
1
|
+
require File.expand_path("../../spec_helper", __FILE__)
|
2
|
+
|
3
|
+
module VncTools
|
4
|
+
describe Recorder do
|
5
|
+
context "given a display string" do
|
6
|
+
let(:process) { mock(ChildProcess, :crashed? => false, :start => nil, :stop => nil) }
|
7
|
+
let(:recorder) { Recorder.new ":1", "out.mp4" }
|
8
|
+
|
9
|
+
it "knows its display" do
|
10
|
+
recorder.display.should == ":1"
|
11
|
+
end
|
12
|
+
|
13
|
+
it "knows its output" do
|
14
|
+
recorder.output.should == "out.mp4"
|
15
|
+
end
|
16
|
+
|
17
|
+
it "starts and stops recording on the given display" do
|
18
|
+
ChildProcess.should_receive(:build).with(
|
19
|
+
"ffmpeg",
|
20
|
+
"-an", # no audio,
|
21
|
+
"-f", "x11grab", # force format
|
22
|
+
"-y", # overwrite output files
|
23
|
+
"-r", "5", # frame rate
|
24
|
+
"-s", "1024x768", # size
|
25
|
+
"-i", ":1.0+0,0", # display :1
|
26
|
+
"-vcodec", "mpeg4", # default encoding
|
27
|
+
"-sameq", "out.mp4" # output
|
28
|
+
).and_return process
|
29
|
+
|
30
|
+
process.should_receive(:start)
|
31
|
+
recorder.start
|
32
|
+
|
33
|
+
process.should_receive(:stop)
|
34
|
+
recorder.stop
|
35
|
+
end
|
36
|
+
|
37
|
+
it "raises an error if the process crashed" do
|
38
|
+
ChildProcess.stub :build => mock(:start => nil, :crashed? => true)
|
39
|
+
|
40
|
+
lambda { recorder.start }.should raise_error
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end # Recorder
|
44
|
+
end # VncTools
|
@@ -0,0 +1,59 @@
|
|
1
|
+
require File.expand_path("../../spec_helper", __FILE__)
|
2
|
+
|
3
|
+
module VncTools
|
4
|
+
describe ServerPool do
|
5
|
+
let(:server) { mock(Server, :start => nil, :stop => nil) }
|
6
|
+
let(:fake_server_class) { mock(:new => server)}
|
7
|
+
let(:pool) { ServerPool.new(3, fake_server_class) }
|
8
|
+
|
9
|
+
it "creates 3 instances of the given display class" do
|
10
|
+
fake_server_class.should_receive(:new).exactly(3).times
|
11
|
+
|
12
|
+
pool = ServerPool.new(3, fake_server_class)
|
13
|
+
pool.size.should == 3
|
14
|
+
end
|
15
|
+
|
16
|
+
it "can fetch a server from the pool" do
|
17
|
+
pool.get.should == server
|
18
|
+
pool.size.should == 2
|
19
|
+
end
|
20
|
+
|
21
|
+
it "can release a server" do
|
22
|
+
obj = pool.get
|
23
|
+
pool.size.should == 2
|
24
|
+
|
25
|
+
pool.release obj
|
26
|
+
end
|
27
|
+
|
28
|
+
it "can stop the pool" do
|
29
|
+
pool.stub(:running => [server])
|
30
|
+
server.should_receive(:stop)
|
31
|
+
|
32
|
+
pool.stop
|
33
|
+
end
|
34
|
+
|
35
|
+
it "raises a TooManyDisplaysError if the pool is over capacity" do
|
36
|
+
lambda { pool.release "foo" }.should raise_error(ServerPool::TooManyDisplaysError)
|
37
|
+
end
|
38
|
+
|
39
|
+
it "raises a OutOfDisplaysError if the pool is empty" do
|
40
|
+
3.times { pool.get }
|
41
|
+
lambda { pool.get }.should raise_error(ServerPool::OutOfDisplaysError)
|
42
|
+
end
|
43
|
+
|
44
|
+
it "notifies observers" do
|
45
|
+
observer = mock(Observable)
|
46
|
+
|
47
|
+
observer.should_receive(:update).with :on_display_starting, server
|
48
|
+
observer.should_receive(:update).with :on_display_fetched , server
|
49
|
+
observer.should_receive(:update).with :on_display_released, server
|
50
|
+
observer.should_receive(:update).with :on_display_stopping , server
|
51
|
+
|
52
|
+
pool.add_observer observer
|
53
|
+
|
54
|
+
pool.release pool.get
|
55
|
+
pool.stop
|
56
|
+
end
|
57
|
+
|
58
|
+
end # ServerPool
|
59
|
+
end # VncTools
|
@@ -0,0 +1,49 @@
|
|
1
|
+
require File.expand_path("../../spec_helper", __FILE__)
|
2
|
+
|
3
|
+
module VncTools
|
4
|
+
describe Server do
|
5
|
+
context "managing new displays" do
|
6
|
+
let(:server) { Server.new }
|
7
|
+
before { server.stub :last_status => mock(:success? => true) }
|
8
|
+
|
9
|
+
it "starts a new server" do
|
10
|
+
server.should_receive(:`).with("tightvncserver 2>&1").and_return("desktop is #{Socket.gethostname}:1")
|
11
|
+
server.start
|
12
|
+
server.display.should == ":1"
|
13
|
+
end
|
14
|
+
|
15
|
+
it "stops the server" do
|
16
|
+
server.should_receive(:`).with("tightvncserver -kill :5 2>&1")
|
17
|
+
server.stub :display => ":5"
|
18
|
+
server.stop
|
19
|
+
end
|
20
|
+
|
21
|
+
it "raises Server::Error if the server could not be started" do
|
22
|
+
server.should_receive(:`).and_return("oops")
|
23
|
+
server.stub :last_status => mock(:success? => false)
|
24
|
+
|
25
|
+
lambda { server.start }.should raise_error(Server::Error, /oops/)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
context "controlling an existing display" do
|
30
|
+
let(:server) { Server.new ":5" }
|
31
|
+
before { server.stub :last_status => mock(:success? => true) }
|
32
|
+
|
33
|
+
it "starts the server on the given display" do
|
34
|
+
server.should_receive(:`).with("tightvncserver :5 2>&1").and_return("desktop is #{Socket.gethostname}:5")
|
35
|
+
server.start
|
36
|
+
server.display.should == ":5"
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
it "returns an instance for all existing displays" do
|
41
|
+
Dir.stub(:[]).and_return [".vnc/qa1:1.pid", ".vnc/qa1:2.pid", ".vnc/qa1:3.pid"]
|
42
|
+
|
43
|
+
all = Server.all
|
44
|
+
all.size.should == 3
|
45
|
+
all.map { |e| e.display }.should == [":1", ":2", ":3"]
|
46
|
+
end
|
47
|
+
|
48
|
+
end # Server
|
49
|
+
end # VncTools
|
data/vnctools.gemspec
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
3
|
+
require "vnctools/version"
|
4
|
+
|
5
|
+
Gem::Specification.new do |s|
|
6
|
+
s.name = "vnctools"
|
7
|
+
s.version = VncTools::VERSION
|
8
|
+
s.platform = Gem::Platform::RUBY
|
9
|
+
s.authors = ["Jari Bakken"]
|
10
|
+
s.email = ["jari.bakken@gmail.com"]
|
11
|
+
s.homepage = ""
|
12
|
+
s.summary = %q{Simple CLI wrappers to control and record VNC displays from Ruby.}
|
13
|
+
s.description = %q{Simple CLI wrappers to control and record VNC displays from Ruby.}
|
14
|
+
|
15
|
+
s.rubyforge_project = "vnctools"
|
16
|
+
|
17
|
+
s.add_dependency "childprocess"
|
18
|
+
s.add_development_dependency "simplecov"
|
19
|
+
s.add_development_dependency "rspec", "~> 2.0"
|
20
|
+
|
21
|
+
s.files = `git ls-files`.split("\n")
|
22
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
23
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
24
|
+
s.require_paths = ["lib"]
|
25
|
+
end
|
metadata
ADDED
@@ -0,0 +1,107 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: vnctools
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease:
|
5
|
+
version: 0.0.1
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Jari Bakken
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
|
13
|
+
date: 2011-02-03 00:00:00 +01:00
|
14
|
+
default_executable:
|
15
|
+
dependencies:
|
16
|
+
- !ruby/object:Gem::Dependency
|
17
|
+
name: childprocess
|
18
|
+
prerelease: false
|
19
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
20
|
+
none: false
|
21
|
+
requirements:
|
22
|
+
- - ">="
|
23
|
+
- !ruby/object:Gem::Version
|
24
|
+
version: "0"
|
25
|
+
type: :runtime
|
26
|
+
version_requirements: *id001
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: simplecov
|
29
|
+
prerelease: false
|
30
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
31
|
+
none: false
|
32
|
+
requirements:
|
33
|
+
- - ">="
|
34
|
+
- !ruby/object:Gem::Version
|
35
|
+
version: "0"
|
36
|
+
type: :development
|
37
|
+
version_requirements: *id002
|
38
|
+
- !ruby/object:Gem::Dependency
|
39
|
+
name: rspec
|
40
|
+
prerelease: false
|
41
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
42
|
+
none: false
|
43
|
+
requirements:
|
44
|
+
- - ~>
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: "2.0"
|
47
|
+
type: :development
|
48
|
+
version_requirements: *id003
|
49
|
+
description: Simple CLI wrappers to control and record VNC displays from Ruby.
|
50
|
+
email:
|
51
|
+
- jari.bakken@gmail.com
|
52
|
+
executables: []
|
53
|
+
|
54
|
+
extensions: []
|
55
|
+
|
56
|
+
extra_rdoc_files: []
|
57
|
+
|
58
|
+
files:
|
59
|
+
- .gitignore
|
60
|
+
- .rspec
|
61
|
+
- Gemfile
|
62
|
+
- LICENSE
|
63
|
+
- README
|
64
|
+
- Rakefile
|
65
|
+
- lib/vnctools.rb
|
66
|
+
- lib/vnctools/recorder.rb
|
67
|
+
- lib/vnctools/server.rb
|
68
|
+
- lib/vnctools/server_pool.rb
|
69
|
+
- lib/vnctools/version.rb
|
70
|
+
- spec/spec_helper.rb
|
71
|
+
- spec/vnctools/recorder_spec.rb
|
72
|
+
- spec/vnctools/server_pool_spec.rb
|
73
|
+
- spec/vnctools/server_spec.rb
|
74
|
+
- vnctools.gemspec
|
75
|
+
has_rdoc: true
|
76
|
+
homepage: ""
|
77
|
+
licenses: []
|
78
|
+
|
79
|
+
post_install_message:
|
80
|
+
rdoc_options: []
|
81
|
+
|
82
|
+
require_paths:
|
83
|
+
- lib
|
84
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
85
|
+
none: false
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: "0"
|
90
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
91
|
+
none: false
|
92
|
+
requirements:
|
93
|
+
- - ">="
|
94
|
+
- !ruby/object:Gem::Version
|
95
|
+
version: "0"
|
96
|
+
requirements: []
|
97
|
+
|
98
|
+
rubyforge_project: vnctools
|
99
|
+
rubygems_version: 1.5.0
|
100
|
+
signing_key:
|
101
|
+
specification_version: 3
|
102
|
+
summary: Simple CLI wrappers to control and record VNC displays from Ruby.
|
103
|
+
test_files:
|
104
|
+
- spec/spec_helper.rb
|
105
|
+
- spec/vnctools/recorder_spec.rb
|
106
|
+
- spec/vnctools/server_pool_spec.rb
|
107
|
+
- spec/vnctools/server_spec.rb
|