ocrunner 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
data/.document ADDED
@@ -0,0 +1,5 @@
1
+ README.rdoc
2
+ lib/**/*.rb
3
+ bin/*
4
+ features/**/*.feature
5
+ LICENSE
data/.gitignore ADDED
@@ -0,0 +1,21 @@
1
+ ## MAC OS
2
+ .DS_Store
3
+
4
+ ## TEXTMATE
5
+ *.tmproj
6
+ tmtags
7
+
8
+ ## EMACS
9
+ *~
10
+ \#*
11
+ .\#*
12
+
13
+ ## VIM
14
+ *.swp
15
+
16
+ ## PROJECT::GENERAL
17
+ coverage
18
+ rdoc
19
+ pkg
20
+
21
+ ## PROJECT::SPECIFIC
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2010 Jim Benton
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.rdoc ADDED
@@ -0,0 +1,17 @@
1
+ = ocrunner
2
+
3
+ ocrunner is a little Ruby wrapper for running OCUnit tests in XCode from the command line. Its main purpose is to parse the huge output from xcodebuild and display a pretty summary to the user.
4
+
5
+ == Note on Patches/Pull Requests
6
+
7
+ * Fork the project.
8
+ * Make your feature addition or bug fix.
9
+ * Add tests for it. This is important so I don't break it in a
10
+ future version unintentionally.
11
+ * Commit, do not mess with rakefile, version, or history.
12
+ (if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
13
+ * Send me a pull request. Bonus points for topic branches.
14
+
15
+ == Copyright
16
+
17
+ Copyright (c) 2010 Jim Benton. See LICENSE for details.
data/Rakefile ADDED
@@ -0,0 +1,53 @@
1
+ require 'rubygems'
2
+ require 'rake'
3
+
4
+ begin
5
+ require 'jeweler'
6
+ Jeweler::Tasks.new do |gem|
7
+ gem.name = "ocrunner"
8
+ gem.summary = %Q{A small Ruby wrapper for running OCUnit tests with xcodebuilder}
9
+ gem.description = %Q{Provides pretty console output}
10
+ gem.email = "jim@autonomousmachine.com"
11
+ gem.homepage = "http://github.com/jim/ocrunner"
12
+ gem.authors = ["Jim Benton"]
13
+ gem.add_dependency('trollop')
14
+ gem.executables = ['ocrunner']
15
+ end
16
+ Jeweler::GemcutterTasks.new
17
+ rescue LoadError
18
+ puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
19
+ end
20
+
21
+ require 'rake/testtask'
22
+ Rake::TestTask.new(:test) do |test|
23
+ test.libs << 'lib' << 'test'
24
+ test.pattern = 'test/**/test_*.rb'
25
+ test.verbose = true
26
+ end
27
+
28
+ begin
29
+ require 'rcov/rcovtask'
30
+ Rcov::RcovTask.new do |test|
31
+ test.libs << 'test'
32
+ test.pattern = 'test/**/test_*.rb'
33
+ test.verbose = true
34
+ end
35
+ rescue LoadError
36
+ task :rcov do
37
+ abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
38
+ end
39
+ end
40
+
41
+ task :test => :check_dependencies
42
+
43
+ task :default => :test
44
+
45
+ require 'rake/rdoctask'
46
+ Rake::RDocTask.new do |rdoc|
47
+ version = File.exist?('VERSION') ? File.read('VERSION') : ""
48
+
49
+ rdoc.rdoc_dir = 'rdoc'
50
+ rdoc.title = "ocrunner #{version}"
51
+ rdoc.rdoc_files.include('README*')
52
+ rdoc.rdoc_files.include('lib/**/*.rb')
53
+ end
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.1.0
data/bin/ocrunner ADDED
@@ -0,0 +1,9 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ if ENV['OCDEBUG'] == 'true'
4
+ require File.join(File.dirname(__FILE__), '../lib/ocrunner')
5
+ else
6
+ require 'ocrunner'
7
+ end
8
+
9
+ OCRunner::CLI.run
@@ -0,0 +1,28 @@
1
+ require 'trollop'
2
+
3
+ module OCRunner
4
+ module CLI
5
+ def self.run
6
+ opts = Trollop::options do
7
+ v = File.read(File.join(File.dirname(__FILE__), '../../VERSION')).strip
8
+ version "#{v} (c) 2010 Jim Benton github.com/jim/ocrunner"
9
+ banner <<-EOS
10
+ ocrunner is a small ruby wrapper for running automated XCode builds.
11
+
12
+ Usage:
13
+ ocrunner [options]
14
+ where [options] are:
15
+ EOS
16
+ opt :sdk, "SDK to build against", :default => 'iphonesimulator3.1.3'
17
+ opt :target, 'Target to build', :default => 'Test'
18
+ opt :config, "Configuration to use", :default => 'Debug'
19
+ opt :parallel, "Use multiple processors to build (parallelizeTargets)", :type => :boolean, :default => true
20
+ opt :debug_command, "Print xcodebuild command and exit", :type => :boolean, :default => false
21
+ opt :verbose, "Display all xcodebuild output after summary", :type => :boolean, :default => false
22
+ end
23
+
24
+ OCRunner::TestRunner.new(opts)
25
+
26
+ end
27
+ end
28
+ end
@@ -0,0 +1,12 @@
1
+ # color helpers courtesy of RSpec http://github.com/dchelimsky/rspec
2
+
3
+ module OCRunner
4
+ module Console
5
+ def colorize(text, color_code)
6
+ "#{color_code}#{text}\033[0m"
7
+ end
8
+
9
+ def red(text); colorize(text, "\033[31m"); end
10
+ def green(text); colorize(text, "\033[32m"); end
11
+ end
12
+ end
@@ -0,0 +1,10 @@
1
+ module OCRunner
2
+ class TestCase
3
+ attr :name
4
+ attr_accessor :passed, :path, :line, :message
5
+
6
+ def initialize(name)
7
+ @name = name
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,119 @@
1
+ module OCRunner
2
+ class TestRunner
3
+ include Console
4
+
5
+ attr_reader :suites, :current_directory, :options, :log, :command
6
+
7
+ def initialize(options)
8
+ @suites = []
9
+ @log = ''
10
+ @current_directory = Dir.pwd
11
+ @options = options
12
+
13
+ build_command
14
+ run_tests
15
+ display_summary
16
+ display_log
17
+ end
18
+
19
+ def build_command
20
+ @command = "xcodebuild -target #{@options[:target]} -configuration #{@options[:config]} " +
21
+ "-sdk #{@options[:sdk]} #{@options[:parallel] ? '-parallelizeTargets' : ''} build"
22
+ if @options[:debug_command]
23
+ puts @command
24
+ exit
25
+ end
26
+ end
27
+
28
+ def run_tests
29
+ IO.popen("#{@command} 2>&1") do |f|
30
+ while line = f.gets do
31
+ @log << line
32
+ process_console_output(line)
33
+ $stdout.flush
34
+ end
35
+ end
36
+ end
37
+
38
+ def display_summary
39
+ passed = true
40
+ @suites.each do |suite|
41
+ failed = suite.cases.reject {|c| c.passed}
42
+ failed.each do |c|
43
+ passed = false
44
+ puts
45
+ puts ' ' + red("[#{suite.name} #{c.name}] FAIL") + " on line #{c.line} of #{clean_path(c.path)}"
46
+ puts ' ' + c.message unless c.message.nil?
47
+ end
48
+ puts
49
+ end
50
+
51
+ @suites.each do |suite|
52
+ failed = suite.cases.reject {|c| c.passed}
53
+ puts "Suite '#{suite.name}': #{suite.cases.size - failed.size} passes and #{failed.size} failures in #{suite.time} seconds."
54
+ end
55
+ puts
56
+ if passed
57
+ puts green('*** BUILD SUCCEEDED ***')
58
+ else
59
+ puts red('*** BUILD FAILED ***')
60
+ end
61
+ end
62
+
63
+ def display_log
64
+ puts @log if @options[:verbose]
65
+ end
66
+
67
+ def process_console_output(line)
68
+
69
+ # test case started
70
+ if line =~ /Test Case '-\[\w+ (.+)\]' started/
71
+ @current_case = TestCase.new($1)
72
+ end
73
+
74
+ # test case passed
75
+ if line =~ /Test Case .+ passed/
76
+ @current_case.passed = true
77
+ @current_suite.cases << @current_case
78
+ @current_case = nil
79
+ print(green('.'))
80
+ end
81
+
82
+ # test failure
83
+ if line =~ /(.+\.m):(\d+): error: -\[(.+) (.+)\] :(?: (.+):)? /
84
+ @current_case.passed = false
85
+ @current_case.path = $1
86
+ @current_case.line = $2
87
+ @current_case.message = $5
88
+ @current_suite.cases << @current_case
89
+ @current_case = nil
90
+ print red('.')
91
+ end
92
+
93
+ # start test suite
94
+ if line =~ /Test Suite '([^\/]+)' started/
95
+ @current_suite = TestSuite.new($1)
96
+ print "#{$1} "
97
+ end
98
+
99
+ # finish test suite
100
+ if @current_suite && line =~ /^Executed/ && line =~ /\(([\d\.]+)\) seconds/
101
+ @current_suite.time = $1
102
+ @suites << @current_suite
103
+ @current_suite = nil
104
+ print "\n" # clear console line
105
+ end
106
+
107
+ # no Xcode project found
108
+ if line =~ /does not contain an Xcode project/
109
+ puts red('No Xcode project was found.')
110
+ exit
111
+ end
112
+ end
113
+
114
+ def clean_path(path)
115
+ path.gsub(@current_directory + '/', '')
116
+ end
117
+
118
+ end
119
+ end
@@ -0,0 +1,11 @@
1
+ module OCRunner
2
+ class TestSuite
3
+ attr :name
4
+ attr_accessor :cases, :time
5
+
6
+ def initialize(name)
7
+ @name = name
8
+ @cases = []
9
+ end
10
+ end
11
+ end
data/lib/ocrunner.rb ADDED
@@ -0,0 +1,5 @@
1
+ require File.dirname(__FILE__) + '/ocrunner/cli'
2
+ require File.dirname(__FILE__) + '/ocrunner/console'
3
+ require File.dirname(__FILE__) + '/ocrunner/test_case'
4
+ require File.dirname(__FILE__) + '/ocrunner/test_suite'
5
+ require File.dirname(__FILE__) + '/ocrunner/test_runner'
data/ocrunner.gemspec ADDED
@@ -0,0 +1,62 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{ocrunner}
8
+ s.version = "0.1.0"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Jim Benton"]
12
+ s.date = %q{2010-04-08}
13
+ s.default_executable = %q{ocrunner}
14
+ s.description = %q{Provides pretty console output}
15
+ s.email = %q{jim@autonomousmachine.com}
16
+ s.executables = ["ocrunner"]
17
+ s.extra_rdoc_files = [
18
+ "LICENSE",
19
+ "README.rdoc"
20
+ ]
21
+ s.files = [
22
+ ".document",
23
+ ".gitignore",
24
+ "LICENSE",
25
+ "README.rdoc",
26
+ "Rakefile",
27
+ "VERSION",
28
+ "bin/ocrunner",
29
+ "lib/ocrunner.rb",
30
+ "lib/ocrunner/cli.rb",
31
+ "lib/ocrunner/console.rb",
32
+ "lib/ocrunner/test_case.rb",
33
+ "lib/ocrunner/test_runner.rb",
34
+ "lib/ocrunner/test_suite.rb",
35
+ "ocrunner.gemspec",
36
+ "test/helper.rb",
37
+ "test/test_ocrunner.rb"
38
+ ]
39
+ s.homepage = %q{http://github.com/jim/ocrunner}
40
+ s.rdoc_options = ["--charset=UTF-8"]
41
+ s.require_paths = ["lib"]
42
+ s.rubygems_version = %q{1.3.6}
43
+ s.summary = %q{A small Ruby wrapper for running OCUnit tests with xcodebuilder}
44
+ s.test_files = [
45
+ "test/helper.rb",
46
+ "test/test_ocrunner.rb"
47
+ ]
48
+
49
+ if s.respond_to? :specification_version then
50
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
51
+ s.specification_version = 3
52
+
53
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
54
+ s.add_runtime_dependency(%q<trollop>, [">= 0"])
55
+ else
56
+ s.add_dependency(%q<trollop>, [">= 0"])
57
+ end
58
+ else
59
+ s.add_dependency(%q<trollop>, [">= 0"])
60
+ end
61
+ end
62
+
data/test/helper.rb ADDED
@@ -0,0 +1,10 @@
1
+ require 'rubygems'
2
+ require 'test/unit'
3
+ require 'shoulda'
4
+
5
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
6
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
7
+ require 'ocrunner'
8
+
9
+ class Test::Unit::TestCase
10
+ end
@@ -0,0 +1,7 @@
1
+ require 'helper'
2
+
3
+ class TestOcrunner < Test::Unit::TestCase
4
+ should "probably rename this file and start testing for real" do
5
+ flunk "hey buddy, you should probably rename this file and start testing for real"
6
+ end
7
+ end
metadata ADDED
@@ -0,0 +1,90 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ocrunner
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 0
7
+ - 1
8
+ - 0
9
+ version: 0.1.0
10
+ platform: ruby
11
+ authors:
12
+ - Jim Benton
13
+ autorequire:
14
+ bindir: bin
15
+ cert_chain: []
16
+
17
+ date: 2010-04-08 00:00:00 -05:00
18
+ default_executable: ocrunner
19
+ dependencies:
20
+ - !ruby/object:Gem::Dependency
21
+ name: trollop
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - ">="
26
+ - !ruby/object:Gem::Version
27
+ segments:
28
+ - 0
29
+ version: "0"
30
+ type: :runtime
31
+ version_requirements: *id001
32
+ description: Provides pretty console output
33
+ email: jim@autonomousmachine.com
34
+ executables:
35
+ - ocrunner
36
+ extensions: []
37
+
38
+ extra_rdoc_files:
39
+ - LICENSE
40
+ - README.rdoc
41
+ files:
42
+ - .document
43
+ - .gitignore
44
+ - LICENSE
45
+ - README.rdoc
46
+ - Rakefile
47
+ - VERSION
48
+ - bin/ocrunner
49
+ - lib/ocrunner.rb
50
+ - lib/ocrunner/cli.rb
51
+ - lib/ocrunner/console.rb
52
+ - lib/ocrunner/test_case.rb
53
+ - lib/ocrunner/test_runner.rb
54
+ - lib/ocrunner/test_suite.rb
55
+ - ocrunner.gemspec
56
+ - test/helper.rb
57
+ - test/test_ocrunner.rb
58
+ has_rdoc: true
59
+ homepage: http://github.com/jim/ocrunner
60
+ licenses: []
61
+
62
+ post_install_message:
63
+ rdoc_options:
64
+ - --charset=UTF-8
65
+ require_paths:
66
+ - lib
67
+ required_ruby_version: !ruby/object:Gem::Requirement
68
+ requirements:
69
+ - - ">="
70
+ - !ruby/object:Gem::Version
71
+ segments:
72
+ - 0
73
+ version: "0"
74
+ required_rubygems_version: !ruby/object:Gem::Requirement
75
+ requirements:
76
+ - - ">="
77
+ - !ruby/object:Gem::Version
78
+ segments:
79
+ - 0
80
+ version: "0"
81
+ requirements: []
82
+
83
+ rubyforge_project:
84
+ rubygems_version: 1.3.6
85
+ signing_key:
86
+ specification_version: 3
87
+ summary: A small Ruby wrapper for running OCUnit tests with xcodebuilder
88
+ test_files:
89
+ - test/helper.rb
90
+ - test/test_ocrunner.rb