rubysl-expect 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/.travis.yml +8 -0
- data/Gemfile +4 -0
- data/LICENSE +25 -0
- data/README.md +29 -0
- data/Rakefile +1 -0
- data/lib/expect.rb +1 -0
- data/lib/rubysl/expect.rb +2 -0
- data/lib/rubysl/expect/expect.rb +36 -0
- data/lib/rubysl/expect/version.rb +5 -0
- data/rubysl-expect.gemspec +23 -0
- data/spec/expect_spec.rb +59 -0
- metadata +113 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: fabee5283790fd0f90819923c61d56b45c409262
|
4
|
+
data.tar.gz: de080530c48c0328cafa577937ca9a7d336dcead
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 11cc1a7164df258a365073b4cfb868867219a17171ad61fdfa1c9f529dbf57999f8937ac6fccd7987b67b1621cf16a7749fe7ce29fcb5c5d9613ebf25281b18d
|
7
|
+
data.tar.gz: b51201079c5b1172e966fec2207a49ae14dcd30f62a4869221ee120b8ef4bdd7706896134779c7122ca53761693238101f1e305341f20e82aaee5140e4a294c2
|
data/.gitignore
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
Copyright (c) 2013, Brian Shirai
|
2
|
+
All rights reserved.
|
3
|
+
|
4
|
+
Redistribution and use in source and binary forms, with or without
|
5
|
+
modification, are permitted provided that the following conditions are met:
|
6
|
+
|
7
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
8
|
+
list of conditions and the following disclaimer.
|
9
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
10
|
+
this list of conditions and the following disclaimer in the documentation
|
11
|
+
and/or other materials provided with the distribution.
|
12
|
+
3. Neither the name of the library nor the names of its contributors may be
|
13
|
+
used to endorse or promote products derived from this software without
|
14
|
+
specific prior written permission.
|
15
|
+
|
16
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
17
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
18
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
19
|
+
DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY DIRECT,
|
20
|
+
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
21
|
+
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
22
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
|
23
|
+
OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
24
|
+
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
|
25
|
+
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
data/README.md
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
# Rubysl::Expect
|
2
|
+
|
3
|
+
TODO: Write a gem description
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'rubysl-expect'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install rubysl-expect
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
TODO: Write usage instructions here
|
22
|
+
|
23
|
+
## Contributing
|
24
|
+
|
25
|
+
1. Fork it
|
26
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
27
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
28
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
29
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
data/lib/expect.rb
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "rubysl/expect"
|
@@ -0,0 +1,36 @@
|
|
1
|
+
$expect_verbose = false
|
2
|
+
|
3
|
+
class IO
|
4
|
+
def expect(pat,timeout=9999999)
|
5
|
+
buf = ''
|
6
|
+
case pat
|
7
|
+
when String
|
8
|
+
e_pat = Regexp.new(Regexp.quote(pat))
|
9
|
+
when Regexp
|
10
|
+
e_pat = pat
|
11
|
+
end
|
12
|
+
while true
|
13
|
+
if !IO.select([self],nil,nil,timeout) or eof? then
|
14
|
+
result = nil
|
15
|
+
break
|
16
|
+
end
|
17
|
+
c = getc.chr
|
18
|
+
buf << c
|
19
|
+
if $expect_verbose
|
20
|
+
STDOUT.print c
|
21
|
+
STDOUT.flush
|
22
|
+
end
|
23
|
+
if mat=e_pat.match(buf) then
|
24
|
+
result = [buf,*mat.to_a[1..-1]]
|
25
|
+
break
|
26
|
+
end
|
27
|
+
end
|
28
|
+
if block_given? then
|
29
|
+
yield result
|
30
|
+
else
|
31
|
+
return result
|
32
|
+
end
|
33
|
+
nil
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
require './lib/rubysl/expect/version'
|
3
|
+
|
4
|
+
Gem::Specification.new do |spec|
|
5
|
+
spec.name = "rubysl-expect"
|
6
|
+
spec.version = RubySL::Expect::VERSION
|
7
|
+
spec.authors = ["Brian Shirai"]
|
8
|
+
spec.email = ["brixen@gmail.com"]
|
9
|
+
spec.description = %q{Ruby standard library expect.}
|
10
|
+
spec.summary = %q{Ruby standard library expect.}
|
11
|
+
spec.homepage = "https://github.com/rubysl/rubysl-expect"
|
12
|
+
spec.license = "BSD"
|
13
|
+
|
14
|
+
spec.files = `git ls-files`.split($/)
|
15
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
16
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
17
|
+
spec.require_paths = ["lib"]
|
18
|
+
|
19
|
+
spec.add_development_dependency "bundler", "~> 1.3"
|
20
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
21
|
+
spec.add_development_dependency "mspec", "~> 1.5"
|
22
|
+
spec.add_development_dependency "rubysl-prettyprint", "~> 1.0"
|
23
|
+
end
|
data/spec/expect_spec.rb
ADDED
@@ -0,0 +1,59 @@
|
|
1
|
+
require 'expect'
|
2
|
+
|
3
|
+
describe "IO#expect" do
|
4
|
+
before :each do
|
5
|
+
@read, @write = IO.pipe
|
6
|
+
end
|
7
|
+
|
8
|
+
after :each do
|
9
|
+
@read.close unless @read.closed?
|
10
|
+
@write.close unless @write.closed?
|
11
|
+
end
|
12
|
+
|
13
|
+
it "matches data against a Regexp" do
|
14
|
+
@write << "prompt> hello"
|
15
|
+
|
16
|
+
result = @read.expect(/[pf]rompt>/)
|
17
|
+
result.should == ["prompt>"]
|
18
|
+
end
|
19
|
+
|
20
|
+
it "matches data against a String" do
|
21
|
+
@write << "prompt> hello"
|
22
|
+
|
23
|
+
result = @read.expect("prompt>")
|
24
|
+
result.should == ["prompt>"]
|
25
|
+
end
|
26
|
+
|
27
|
+
it "returns any captures of the Regexp" do
|
28
|
+
@write << "prompt> hello"
|
29
|
+
|
30
|
+
result = @read.expect(/(pro)mpt(>)/)
|
31
|
+
result.should == ["prompt>", "pro", ">"]
|
32
|
+
end
|
33
|
+
|
34
|
+
it "returns raises IOError if the IO is closed" do
|
35
|
+
@write << "prompt> hello"
|
36
|
+
@read.close
|
37
|
+
|
38
|
+
lambda {
|
39
|
+
@read.expect("hello")
|
40
|
+
}.should raise_error(IOError)
|
41
|
+
end
|
42
|
+
|
43
|
+
it "returns nil if eof is hit" do
|
44
|
+
@write << "pro"
|
45
|
+
@write.close
|
46
|
+
|
47
|
+
@read.expect("prompt").should be_nil
|
48
|
+
end
|
49
|
+
|
50
|
+
it "yields the result if a block is given" do
|
51
|
+
@write << "prompt> hello"
|
52
|
+
|
53
|
+
res = nil
|
54
|
+
|
55
|
+
@read.expect("prompt>") { |x| res = x }
|
56
|
+
|
57
|
+
res.should == ["prompt>"]
|
58
|
+
end
|
59
|
+
end
|
metadata
ADDED
@@ -0,0 +1,113 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rubysl-expect
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Brian Shirai
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2013-12-27 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ~>
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.3'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.3'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ~>
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ~>
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: mspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ~>
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '1.5'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ~>
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '1.5'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rubysl-prettyprint
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ~>
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '1.0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ~>
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '1.0'
|
69
|
+
description: Ruby standard library expect.
|
70
|
+
email:
|
71
|
+
- brixen@gmail.com
|
72
|
+
executables: []
|
73
|
+
extensions: []
|
74
|
+
extra_rdoc_files: []
|
75
|
+
files:
|
76
|
+
- .gitignore
|
77
|
+
- .travis.yml
|
78
|
+
- Gemfile
|
79
|
+
- LICENSE
|
80
|
+
- README.md
|
81
|
+
- Rakefile
|
82
|
+
- lib/expect.rb
|
83
|
+
- lib/rubysl/expect.rb
|
84
|
+
- lib/rubysl/expect/expect.rb
|
85
|
+
- lib/rubysl/expect/version.rb
|
86
|
+
- rubysl-expect.gemspec
|
87
|
+
- spec/expect_spec.rb
|
88
|
+
homepage: https://github.com/rubysl/rubysl-expect
|
89
|
+
licenses:
|
90
|
+
- BSD
|
91
|
+
metadata: {}
|
92
|
+
post_install_message:
|
93
|
+
rdoc_options: []
|
94
|
+
require_paths:
|
95
|
+
- lib
|
96
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
97
|
+
requirements:
|
98
|
+
- - '>='
|
99
|
+
- !ruby/object:Gem::Version
|
100
|
+
version: '0'
|
101
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
102
|
+
requirements:
|
103
|
+
- - '>='
|
104
|
+
- !ruby/object:Gem::Version
|
105
|
+
version: '0'
|
106
|
+
requirements: []
|
107
|
+
rubyforge_project:
|
108
|
+
rubygems_version: 2.0.7
|
109
|
+
signing_key:
|
110
|
+
specification_version: 4
|
111
|
+
summary: Ruby standard library expect.
|
112
|
+
test_files:
|
113
|
+
- spec/expect_spec.rb
|