dtm 0.0.1
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.
- checksums.yaml +7 -0
- data/.gitignore +18 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +29 -0
- data/Rakefile +4 -0
- data/dtm.gemspec +24 -0
- data/lib/dtm.rb +8 -0
- data/lib/dtm/dtm.rb +101 -0
- data/lib/dtm/job.rb +20 -0
- data/lib/dtm/schedule.rb +27 -0
- data/lib/dtm/version.rb +3 -0
- data/test/test_dtm.rb +11 -0
- metadata +101 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: cf395d4e920a64bd54d96b9a1ce8fd43f9e972fe
|
|
4
|
+
data.tar.gz: ace8f79feafaea29ae66328fb6d458abd9931ac6
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 8de747d449ee92b2f2957040c8614376ecbec0619e79cc875ef8b1a2d01b959e3887bb8202d8fc02fdaf2ce3bd03d7ed4f4d0d387fff65cca19564835cf8b468
|
|
7
|
+
data.tar.gz: 78b05c5bc3dec9f245dc91544bdec340920fb2b8816be4d235852ce36b5d9ee4d69e5db92c1729656b651c9d7871b518439ab6c54d006bfd69e7e115aab3c9dd
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Copyright (c) 2013 RUIJIA LI
|
|
2
|
+
|
|
3
|
+
MIT License
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
6
|
+
a copy of this software and associated documentation files (the
|
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
11
|
+
the following conditions:
|
|
12
|
+
|
|
13
|
+
The above copyright notice and this permission notice shall be
|
|
14
|
+
included in all copies or substantial portions of the Software.
|
|
15
|
+
|
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# Dtm
|
|
2
|
+
|
|
3
|
+
TODO: Write a gem description
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
Add this line to your application's Gemfile:
|
|
8
|
+
|
|
9
|
+
gem 'dtm'
|
|
10
|
+
|
|
11
|
+
And then execute:
|
|
12
|
+
|
|
13
|
+
$ bundle
|
|
14
|
+
|
|
15
|
+
Or install it yourself as:
|
|
16
|
+
|
|
17
|
+
$ gem install dtm
|
|
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
data/dtm.gemspec
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
+
require 'dtm/version'
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |spec|
|
|
7
|
+
spec.name = "dtm"
|
|
8
|
+
spec.version = Dtm::VERSION
|
|
9
|
+
spec.authors = ["Ruijia Li"]
|
|
10
|
+
spec.email = ["ruijia.li@gmail.com"]
|
|
11
|
+
spec.description = %q{A ruby wrapper for Microsoft DTM (Driver Test Manager) console application wttcl.exe}
|
|
12
|
+
spec.summary = %q{A ruby wrapper for Microsoft DTM (Driver Test Manager) console application wttcl.exe}
|
|
13
|
+
spec.homepage = "https://github.com/rli9/dtm"
|
|
14
|
+
spec.license = "MIT"
|
|
15
|
+
|
|
16
|
+
spec.files = `git ls-files`.split($/)
|
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
19
|
+
spec.require_paths = ["lib"]
|
|
20
|
+
|
|
21
|
+
spec.add_development_dependency "bundler", "~> 1.3"
|
|
22
|
+
spec.add_development_dependency "rake"
|
|
23
|
+
spec.add_development_dependency "simplecov"
|
|
24
|
+
end
|
data/lib/dtm.rb
ADDED
data/lib/dtm/dtm.rb
ADDED
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
class String
|
|
2
|
+
def underscore
|
|
3
|
+
strip.downcase.scan(/\w+/).join("_")
|
|
4
|
+
end
|
|
5
|
+
|
|
6
|
+
def escape
|
|
7
|
+
URI.escape(self, /[<>\|:\*\"\?\\]/)
|
|
8
|
+
end
|
|
9
|
+
|
|
10
|
+
def camelize
|
|
11
|
+
strip.scan(/[\da-zA-Z]+/).collect(&:capitalize).join("")
|
|
12
|
+
end
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
module Dtm
|
|
16
|
+
class Dtm
|
|
17
|
+
def self.instance(data_store)
|
|
18
|
+
wttcl = 'C:\\Program Files\\Microsoft Driver Test Manager\\Studio\\wttcl.exe'
|
|
19
|
+
return Dtm.new(wttcl, data_store) if File.exist?(wttcl)
|
|
20
|
+
|
|
21
|
+
wttcl = 'C:\\Program Files (x86)\\Microsoft Driver Test Manager\\Studio\\wttcl.exe'
|
|
22
|
+
return Dtm.new(wttcl, data_store) if File.exist?(wttcl)
|
|
23
|
+
|
|
24
|
+
raise
|
|
25
|
+
end
|
|
26
|
+
|
|
27
|
+
def initialize(wttcl, data_store)
|
|
28
|
+
@wttcl = wttcl
|
|
29
|
+
@data_store = data_store
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
def job(job_id)
|
|
33
|
+
Job.new(self, job_id)
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
def schedule(schedule_id)
|
|
37
|
+
Schedule.new(self, schedule_id)
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
def machines(machine_pool)
|
|
41
|
+
self.set_machine_status(:machine_pool => machine_pool) do |stdout|
|
|
42
|
+
stdout.split("\n").collect {|line| line.scan(/\[\w+\]/) if line.match(/Machine \[\w+\] \(ID \d+\) is in \[\w+\] state./)}.compact
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
def availabe_machines(params)
|
|
47
|
+
self.method_missing(:setmachinestatus, params) do |stdout|
|
|
48
|
+
stdout.split("\n").collect{|line| line.scan(/\[\w+\]/) if line.match(/Machine \[\w+\] \(ID \d+\) is in \[\w+\] state./)}.compact
|
|
49
|
+
end
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
def method_missing(sym, params)
|
|
53
|
+
params[:data_store] = @data_store
|
|
54
|
+
|
|
55
|
+
cmd = "\"#{@wttcl}\" #{sym.to_s.camelize} #{self.class.parameterize(params)}"
|
|
56
|
+
puts cmd
|
|
57
|
+
|
|
58
|
+
#FIXME how to deal w/ ERROR: message or the command doesn't return 0
|
|
59
|
+
IO.popen(cmd) do |pipe|
|
|
60
|
+
stdout = pipe.read
|
|
61
|
+
block_given? ? yield(stdout) : stdout
|
|
62
|
+
end
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
def add_job(params)
|
|
66
|
+
params[:type] ||= "Automated"
|
|
67
|
+
|
|
68
|
+
self.method_missing(:add_job, params) do |stdout|
|
|
69
|
+
return self.job(stdout.slice(/\d+/)) if stdout.match(/Job Created Successfully with ID=\d+/)
|
|
70
|
+
raise
|
|
71
|
+
end
|
|
72
|
+
end
|
|
73
|
+
|
|
74
|
+
#FIXME design choice, put stdout processing here or leave it to job?
|
|
75
|
+
def schedule_job(params)
|
|
76
|
+
self.method_missing(:schedule_job, params) do |stdout|
|
|
77
|
+
stdout.split("\n").select {|line| line.match(/Schedule Created with Id \d+/)}
|
|
78
|
+
.collect {|line| line.slice(/\d+/)}
|
|
79
|
+
.collect {|schedule_id| self.schedule(schedule_id)}
|
|
80
|
+
end
|
|
81
|
+
end
|
|
82
|
+
|
|
83
|
+
class << self
|
|
84
|
+
def parameterize(params)
|
|
85
|
+
unless params.instance_of?(Hash)
|
|
86
|
+
params.to_s
|
|
87
|
+
else
|
|
88
|
+
params = params.collect do |key, value|
|
|
89
|
+
unless value.instance_of?(Array)
|
|
90
|
+
"/#{key.to_s.camelize}:#{parameterize(value)}"
|
|
91
|
+
else
|
|
92
|
+
value.collect {|item| "/#{key.to_s.camelize} { #{parameterize(item)} }"}.join(" ")
|
|
93
|
+
end
|
|
94
|
+
end
|
|
95
|
+
|
|
96
|
+
params.join(" ")
|
|
97
|
+
end
|
|
98
|
+
end
|
|
99
|
+
end
|
|
100
|
+
end
|
|
101
|
+
end
|
data/lib/dtm/job.rb
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
module Dtm
|
|
2
|
+
class Job
|
|
3
|
+
attr_reader :id
|
|
4
|
+
def initialize(dtm, job_id)
|
|
5
|
+
@dtm = dtm
|
|
6
|
+
@id = job_id
|
|
7
|
+
end
|
|
8
|
+
|
|
9
|
+
def delete
|
|
10
|
+
#FIXME check whether delete is successful or not
|
|
11
|
+
#Delete job will also delete associated schedules
|
|
12
|
+
@dtm.delete_job(:job_id => @id)
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
def schedule(params)
|
|
16
|
+
params[:job_id] = @id
|
|
17
|
+
@dtm.schedule_job(params)
|
|
18
|
+
end
|
|
19
|
+
end
|
|
20
|
+
end
|
data/lib/dtm/schedule.rb
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
module Dtm
|
|
2
|
+
class Schedule
|
|
3
|
+
def self.wait_for_completed(schedules, wait_interval)
|
|
4
|
+
while !schedules.empty? do
|
|
5
|
+
completed_schedules = schedules.select(&:completed?)
|
|
6
|
+
|
|
7
|
+
unless completed_schedules.empty?
|
|
8
|
+
schedules = schedules - completed_schedules
|
|
9
|
+
puts "Remain #{schedules.length}: #{schedules.collect(&:id).join(', ')}"
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
sleep(wait_interval) unless schedules.empty?
|
|
13
|
+
end
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
attr_reader :id
|
|
17
|
+
|
|
18
|
+
def initialize(dtm, schedule_id)
|
|
19
|
+
@dtm = dtm
|
|
20
|
+
@id = schedule_id
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
def completed?
|
|
24
|
+
@dtm.schedule_status(:schedule_id => @id) {|stdout| stdout.match(/Schedule Status : Completed/)}
|
|
25
|
+
end
|
|
26
|
+
end
|
|
27
|
+
end
|
data/lib/dtm/version.rb
ADDED
data/test/test_dtm.rb
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
require 'simplecov'
|
|
2
|
+
SimpleCov.start
|
|
3
|
+
require 'test/unit'
|
|
4
|
+
require 'dtm'
|
|
5
|
+
|
|
6
|
+
class TestDtm < Test::Unit::TestCase
|
|
7
|
+
def test_parameterize
|
|
8
|
+
params = Dtm::Dtm.parameterize(:a_a => 'a', :b_b => {:c => true}, :d_d => [{:e_e => 'e'}, '/FF:f'])
|
|
9
|
+
assert_equal("/AA:a /BB:/C:true /DD { /EE:e } /DD { /FF:f }", params)
|
|
10
|
+
end
|
|
11
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: dtm
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Ruijia Li
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2013-08-13 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: '0'
|
|
34
|
+
type: :development
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - '>='
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '0'
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: simplecov
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - '>='
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '0'
|
|
48
|
+
type: :development
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - '>='
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '0'
|
|
55
|
+
description: A ruby wrapper for Microsoft DTM (Driver Test Manager) console application
|
|
56
|
+
wttcl.exe
|
|
57
|
+
email:
|
|
58
|
+
- ruijia.li@gmail.com
|
|
59
|
+
executables: []
|
|
60
|
+
extensions: []
|
|
61
|
+
extra_rdoc_files: []
|
|
62
|
+
files:
|
|
63
|
+
- .gitignore
|
|
64
|
+
- Gemfile
|
|
65
|
+
- LICENSE.txt
|
|
66
|
+
- README.md
|
|
67
|
+
- Rakefile
|
|
68
|
+
- dtm.gemspec
|
|
69
|
+
- lib/dtm.rb
|
|
70
|
+
- lib/dtm/dtm.rb
|
|
71
|
+
- lib/dtm/job.rb
|
|
72
|
+
- lib/dtm/schedule.rb
|
|
73
|
+
- lib/dtm/version.rb
|
|
74
|
+
- test/test_dtm.rb
|
|
75
|
+
homepage: https://github.com/rli9/dtm
|
|
76
|
+
licenses:
|
|
77
|
+
- MIT
|
|
78
|
+
metadata: {}
|
|
79
|
+
post_install_message:
|
|
80
|
+
rdoc_options: []
|
|
81
|
+
require_paths:
|
|
82
|
+
- lib
|
|
83
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
84
|
+
requirements:
|
|
85
|
+
- - '>='
|
|
86
|
+
- !ruby/object:Gem::Version
|
|
87
|
+
version: '0'
|
|
88
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
89
|
+
requirements:
|
|
90
|
+
- - '>='
|
|
91
|
+
- !ruby/object:Gem::Version
|
|
92
|
+
version: '0'
|
|
93
|
+
requirements: []
|
|
94
|
+
rubyforge_project:
|
|
95
|
+
rubygems_version: 2.0.6
|
|
96
|
+
signing_key:
|
|
97
|
+
specification_version: 4
|
|
98
|
+
summary: A ruby wrapper for Microsoft DTM (Driver Test Manager) console application
|
|
99
|
+
wttcl.exe
|
|
100
|
+
test_files:
|
|
101
|
+
- test/test_dtm.rb
|