most 0.7.3 → 0.7.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.
- data/History.txt +15 -5
- data/Manifest.txt +2 -1
- data/{Readme.rdoc → README.rdoc} +0 -0
- data/README.txt +146 -0
- data/Rakefile +2 -0
- data/lib/most/structures/test_case.rb +1 -2
- data/lib/most.rb +1 -1
- metadata +5 -3
data/History.txt
CHANGED
@@ -1,14 +1,24 @@
|
|
1
|
+
== 0.7.4 2009-26-11
|
2
|
+
* Fixed minor Gem problems
|
3
|
+
* The "Numeric" class was extended with the following useful methods for the "MemoryOut" module:
|
4
|
+
* Numeric#bytes,
|
5
|
+
* Numeric#kilobytes,
|
6
|
+
* Numeric#megabytes,
|
7
|
+
* Numeric#megabytes,
|
8
|
+
* Numeric#petabytes.
|
9
|
+
* Added "MemoryOut" module to enable memory checks in tests
|
10
|
+
|
1
11
|
== 0.7.3 2009-23-11
|
2
12
|
|
3
|
-
* The
|
13
|
+
* The "Numeric" class was extended with the following useful methods for the "Timeout" module:
|
4
14
|
* Numeric#milliseconds,
|
5
15
|
* Numeric#seconds,
|
6
16
|
* Numeric#minutes,
|
7
17
|
* Numeric#hours.
|
8
|
-
* An ability to show start and end time in the
|
9
|
-
* Added start time (
|
10
|
-
*
|
11
|
-
* Scheme task and Scheme sample submission were removed due to problems with
|
18
|
+
* An ability to show start and end time in the "verbose" mode was added to the default CLI starter class.
|
19
|
+
* Added start time (":started") entry to the "TestBox" report section.
|
20
|
+
* "IO.popen" was replaced with the Open4 libraries. Open4 and Win32/Open3 gems were added to the dependency list.
|
21
|
+
* Scheme task and Scheme sample submission were removed due to problems with "gsi.exe" piping.
|
12
22
|
|
13
23
|
== 0.7.2 2009-23-10
|
14
24
|
|
data/Manifest.txt
CHANGED
data/{Readme.rdoc → README.rdoc}
RENAMED
File without changes
|
data/README.txt
ADDED
@@ -0,0 +1,146 @@
|
|
1
|
+
= Most, the Core
|
2
|
+
|
3
|
+
== Description
|
4
|
+
|
5
|
+
Most is a simple academic modular open software tester.
|
6
|
+
|
7
|
+
Most, the Core is the main part of the system. Most provides
|
8
|
+
the environment and interface bridges for modules that will
|
9
|
+
implement the basic functionality of the testing system.
|
10
|
+
|
11
|
+
In general Most, the Core consists form two main interfaces:
|
12
|
+
the connector and the tester.
|
13
|
+
|
14
|
+
The connector interface offers the basic bridge to make
|
15
|
+
an implementation of a module which will act as a controlling
|
16
|
+
interface of the system. It can be a command line interface or
|
17
|
+
it can be a module which will set up a server providing a network
|
18
|
+
access for end users.
|
19
|
+
|
20
|
+
The tester interface allows building an implementation of
|
21
|
+
the software validator. By default the Most ships with
|
22
|
+
the tester compliant with the ICPC Validator Standard. The Most system
|
23
|
+
proposes to implement a testing system following this standard, but
|
24
|
+
it is not obligatory. The 3-rd party implementation can vary
|
25
|
+
significantly considering the user preferences.
|
26
|
+
|
27
|
+
It is possible to build other interface bridges using the abstract
|
28
|
+
interface classes provided by the Most system to extend
|
29
|
+
the functionality of the modules. For example the implementation of
|
30
|
+
the connector interface in the form of the network server can build
|
31
|
+
a tunnel interface bridge, so that developers can make implementations,
|
32
|
+
for example, of a SSH tunnel in order to provide a secure connection
|
33
|
+
with the testing system.
|
34
|
+
|
35
|
+
The default system bundle is shipped with a number of basic interface
|
36
|
+
implementations (modules). Please, consider taking a look on realize
|
37
|
+
notes for the list of supplied modules.
|
38
|
+
|
39
|
+
== Features:
|
40
|
+
|
41
|
+
* Test-agnostic cross-platform testing application and library
|
42
|
+
* Ruby domain specific language (DSL) interface for test specifications
|
43
|
+
* YAML support for test specs and test reports
|
44
|
+
* Support of 16 languages out of the box with the predefined Rake Task bundles for compilation and execution
|
45
|
+
* Bundled sample test specifications for each language, which can help you to write your own specs
|
46
|
+
|
47
|
+
== Requirements
|
48
|
+
|
49
|
+
* Ruby 1.8.6 or later
|
50
|
+
|
51
|
+
=== Extra Dependencies
|
52
|
+
|
53
|
+
* sys-proctable (version 0.9.0 or later)
|
54
|
+
|
55
|
+
* open4 (version 1.0.1 or later) for *nix operation systems
|
56
|
+
* win32-open3 (version 0.3.1 or later) for Windows 2000 or later operation systems
|
57
|
+
|
58
|
+
=== Extra Development Dependencies
|
59
|
+
|
60
|
+
* newgem (version 1.5.1 or later)
|
61
|
+
|
62
|
+
== Installation
|
63
|
+
|
64
|
+
=== Gem Installation
|
65
|
+
|
66
|
+
The preferred method of the Most installation is through
|
67
|
+
the Gem file. For this you will need to have RubyGems installed.
|
68
|
+
If you have it, then you can install the system in the following way:
|
69
|
+
|
70
|
+
gem install most
|
71
|
+
|
72
|
+
Note that you must have the correspondent account privileges
|
73
|
+
on your system in order to use this commands.
|
74
|
+
|
75
|
+
For other software bundles (including links for the source code packages)
|
76
|
+
consider visiting the official page of the project.
|
77
|
+
|
78
|
+
* http://85.17.184.9/most
|
79
|
+
|
80
|
+
== Synopsis
|
81
|
+
|
82
|
+
Most can be used as a standalone command line application
|
83
|
+
or as a library.
|
84
|
+
|
85
|
+
=== Library Usage
|
86
|
+
|
87
|
+
To get access to the core interface of the system you need to access
|
88
|
+
the "Core" class by specifying its name to the "SERVICES" dependency injection (DI) container:
|
89
|
+
|
90
|
+
require 'most'
|
91
|
+
|
92
|
+
most_core = Most::SERVICES[:core]
|
93
|
+
|
94
|
+
This will return a reference to the new "Core" instance through which you can control the entire
|
95
|
+
testing system.
|
96
|
+
|
97
|
+
=== Configuration
|
98
|
+
|
99
|
+
The default path for the configuration files is the ".most" directory under
|
100
|
+
the system user's home folder.
|
101
|
+
|
102
|
+
=== Command Line Usage
|
103
|
+
|
104
|
+
The list of command line options can be obtained from the Most executable by one of the following calls:
|
105
|
+
|
106
|
+
most -h
|
107
|
+
most --help
|
108
|
+
|
109
|
+
== Development
|
110
|
+
|
111
|
+
=== Source Repositories
|
112
|
+
|
113
|
+
Most is currently hosted at RubyForge and GitHub.
|
114
|
+
|
115
|
+
The RubyForge page is
|
116
|
+
* http://rubyforge.org/projects/most
|
117
|
+
|
118
|
+
The github web page is
|
119
|
+
* http://github.com/tda/most
|
120
|
+
|
121
|
+
The public git clone URL is
|
122
|
+
* http://github.com/tda/most.git
|
123
|
+
|
124
|
+
== Additional Information
|
125
|
+
|
126
|
+
Author:: Toksaitov Dmitrii Alexandrovich <toksaitov.d@gmail.com>
|
127
|
+
|
128
|
+
Project web site:: http://85.17.184.9/most
|
129
|
+
Project forum:: http://groups.google.com/group/most-system
|
130
|
+
|
131
|
+
== License
|
132
|
+
|
133
|
+
(The GNU General Public License)
|
134
|
+
|
135
|
+
Most is a simple academic modular open software tester.
|
136
|
+
Copyright (C) 2009 Toksaitov Dmitrii Alexandrovich
|
137
|
+
|
138
|
+
This program is free software: you can redistribute it and/or modify
|
139
|
+
it under the terms of the GNU General Public License as published by
|
140
|
+
the Free Software Foundation, either version 3 of the License, or
|
141
|
+
(at your option) any later version.
|
142
|
+
|
143
|
+
This program is distributed in the hope that it will be useful,
|
144
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
145
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
146
|
+
GNU General Public License for more details.
|
data/Rakefile
CHANGED
@@ -32,6 +32,8 @@ $hoe = Hoe.spec Most::UNIX_NAME do
|
|
32
32
|
self.developer Most::AUTHOR, Most::EMAIL
|
33
33
|
self.post_install_message = File.read('PostInstall.txt')
|
34
34
|
|
35
|
+
self.readme_file = 'README.txt'
|
36
|
+
|
35
37
|
self.extra_deps = [['sys-proctable', '>= 0.9.0'],
|
36
38
|
['open4', '>= 1.0.1'],
|
37
39
|
['win32-open3', '>= 0.3.1']]
|
@@ -66,8 +66,7 @@ module Most
|
|
66
66
|
if options[:tests/:report/:specs]
|
67
67
|
result.specs = {:name => @name,
|
68
68
|
:correct_output => @output,
|
69
|
-
:output_destination
|
70
|
-
:output_preprocessor => @output_preprocessor,
|
69
|
+
:output_destination => @output_destination,
|
71
70
|
:runner => @runner}
|
72
71
|
end
|
73
72
|
|
data/lib/most.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: most
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Toksaitov Dmitrii Alexandrovich
|
@@ -107,13 +107,15 @@ extra_rdoc_files:
|
|
107
107
|
- History.txt
|
108
108
|
- Manifest.txt
|
109
109
|
- PostInstall.txt
|
110
|
+
- README.txt
|
110
111
|
files:
|
111
112
|
- Copying.txt
|
112
113
|
- History.txt
|
113
114
|
- Manifest.txt
|
114
115
|
- PostInstall.txt
|
116
|
+
- README.rdoc
|
117
|
+
- README.txt
|
115
118
|
- Rakefile
|
116
|
-
- Readme.rdoc
|
117
119
|
- bin/most
|
118
120
|
- lib/most.rb
|
119
121
|
- lib/most/context.rb
|
@@ -216,7 +218,7 @@ post_install_message: |-
|
|
216
218
|
For more information on Most, see http:/85.17.184.9/most
|
217
219
|
rdoc_options:
|
218
220
|
- --main
|
219
|
-
- README.
|
221
|
+
- README.txt
|
220
222
|
require_paths:
|
221
223
|
- lib
|
222
224
|
required_ruby_version: !ruby/object:Gem::Requirement
|