minitest-test_profile 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 7bf66cd870bfcffbc16e0e6b4058fcd35e4d8bec
4
+ data.tar.gz: af97438b1e2714ba7aa530db4959941de2e2706a
5
+ SHA512:
6
+ metadata.gz: db3769adc865e5c4cee1fae8e8e6732f770768417865ae573e72e3de55005605a706cc6ae36e9638eb7b6adeeda782887fd6c267049167d70f5f5b0484b083ca
7
+ data.tar.gz: d18fbb3129a6cdfd74e7db5f22c4d9e8d878991865285af9c7ef0485b67b69ecd8974813fd721a74478b71866073c9d6c6b3d0f888a7fc987155067cd6b2f02d
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.travis.yml ADDED
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.2.3
4
+ before_install: gem install bundler -v 1.10.6
@@ -0,0 +1,13 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
4
+
5
+ We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, or religion.
6
+
7
+ Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
8
+
9
+ Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
10
+
11
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
12
+
13
+ This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in minitest-test_profile.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 Yuji Yaginuma
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,74 @@
1
+ # Minitest::TestProfile
2
+
3
+ Show slow test as rspec profile options.
4
+
5
+ [![Build Status](https://travis-ci.org/y-yagi/minitest-test_profile.svg?branch=master)](https://travis-ci.org/y-yagi/minitest-test_profile)
6
+ [![Gem Version](https://badge.fury.io/rb/minitest-test_profile.svg)](http://badge.fury.io/rb/minitest-test_profile)
7
+
8
+ ## Installation
9
+
10
+ Add this line to your application's Gemfile:
11
+
12
+ ```ruby
13
+ gem 'minitest-test_profile'
14
+ ```
15
+
16
+ And then execute:
17
+
18
+ $ bundle
19
+
20
+ Or install it yourself as:
21
+
22
+ $ gem install minitest-test_profile
23
+
24
+ ## Usage
25
+
26
+ In your `test_helper.rb` file, add the following lines:
27
+
28
+ ```ruby
29
+ require 'minitest/test_profile'
30
+ Minitest::TestProfile.use!
31
+ ```
32
+
33
+ Options can be specified to `use!` method. Can specify options are as follows:
34
+
35
+ ```ruby
36
+ Minitest::TestProfile.use!(
37
+ count: 3 # The number of tests to be displayed. The default is 10.
38
+ )
39
+ ```
40
+
41
+ ## Output Example
42
+
43
+ ```console
44
+ Top 10 slowest tests (13.062766 seconds, 78.9% of total time):
45
+ SearchIntegrationTest#test_can_search_places_that_login_user_created
46
+ 11.32 seconds
47
+ UserIntegrationTest#test_destroy_user
48
+ 0.30 seconds
49
+ IndexControllerTest#test_logout_top_page
50
+ 0.27 seconds
51
+ TravelIntegrationTest#test_add_route
52
+ 0.19 seconds
53
+ UserTest#test_authenticate_by_google_user
54
+ 0.18 seconds
55
+ TravelIntegrationTest#test_add_members_link_is_displayed
56
+ 0.18 seconds
57
+ TermsControllerTest#test_term_page
58
+ 0.17 seconds
59
+ TravelIntegrationTest#test_edit_schedule
60
+ 0.16 seconds
61
+ PlaceIntegrationTest#test_archive_place
62
+ 0.15 seconds
63
+ PlaceIntegrationTest#test_create_place_that_regist_by_form
64
+ 0.14 seconds
65
+ ```
66
+
67
+ ## Contributing
68
+
69
+ Bug reports and pull requests are welcome on GitHub at https://github.com/y-yagi/minitest-test_profile.
70
+
71
+
72
+ ## License
73
+
74
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,10 @@
1
+ require "bundler/gem_tasks"
2
+ require "rake/testtask"
3
+
4
+ Rake::TestTask.new(:test) do |t|
5
+ t.libs << "test"
6
+ t.libs << "lib"
7
+ t.test_files = FileList['test/**/*_test.rb']
8
+ end
9
+
10
+ task :default => :test
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "minitest/test_profile"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
data/bin/setup ADDED
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,48 @@
1
+ module Minitest
2
+ module TestProfile
3
+ class Reporter < StatisticsReporter
4
+ attr_reader :test_results
5
+
6
+ def initialize(io = $stdout, options = {})
7
+ super(io, options)
8
+ @test_results = []
9
+ @count = options[:count].to_i
10
+ @calculated_total_time = nil
11
+ end
12
+
13
+ def report
14
+ display_aggregated_results
15
+ end
16
+
17
+ def record(result)
18
+ @test_results << result
19
+ end
20
+
21
+ def display_aggregated_results
22
+ calculate_total_time
23
+ aggregate_slow_tests!
24
+ io.puts "\nTop %d slowest tests (%.6f seconds, %.1f%% of total time):\n" % [@test_results.size, slow_tests_total_time, ratio]
25
+ @test_results.each do |test_result|
26
+ io.puts "%s\n %.2f seconds\n" % [test_result.location, test_result.time]
27
+ end
28
+ end
29
+
30
+ def calculate_total_time
31
+ @calculated_total_time ||= @test_results.inject(0) { |sum, slow_test| sum + slow_test.time }
32
+ end
33
+
34
+ def aggregate_slow_tests!
35
+ @test_results.sort! { |a, b| b.time <=> a.time }
36
+ @test_results = @test_results.take(@count)
37
+ end
38
+
39
+ def slow_tests_total_time
40
+ @slow_tests_total_time ||= @test_results.inject(0) { |sum, slow_test| sum + slow_test.time }
41
+ end
42
+
43
+ def ratio
44
+ (slow_tests_total_time / @calculated_total_time) * 100
45
+ end
46
+ end
47
+ end
48
+ end
@@ -0,0 +1,5 @@
1
+ module Minitest
2
+ module TestProfile
3
+ VERSION = "0.1.0"
4
+ end
5
+ end
@@ -0,0 +1,19 @@
1
+ require 'minitest'
2
+ require "minitest/test_profile/version"
3
+ require "minitest/test_profile/reporter"
4
+
5
+ module Minitest
6
+ module TestProfile
7
+ class << self
8
+ attr_reader :count
9
+ def use!(count: 10)
10
+ @count = count
11
+ @use = true
12
+ end
13
+
14
+ def use?
15
+ defined?(@use)
16
+ end
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,10 @@
1
+ require "minitest/test_profile"
2
+ require "minitest/test_profile/reporter"
3
+
4
+ module Minitest
5
+ def self.plugin_test_profile_init(opts)
6
+ if Minitest::TestProfile.use?
7
+ self.reporter << Minitest::TestProfile::Reporter.new($stdout, { count: Minitest::TestProfile.count })
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,25 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'minitest/test_profile/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "minitest-test_profile"
8
+ spec.version = Minitest::TestProfile::VERSION
9
+ spec.authors = ["Yuji Yaginuma"]
10
+ spec.email = ["yuuji.yaginuma@gmail.com"]
11
+
12
+ spec.summary = %q{Show slow test as rspec profile options.}
13
+ spec.homepage = "https://github.com/y-yagi/minitest-test_profile"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
17
+ spec.bindir = "exe"
18
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_dependency "minitest"
22
+ spec.add_development_dependency "bundler", "~> 1.10"
23
+ spec.add_development_dependency "rake", "~> 10.0"
24
+ spec.add_development_dependency "pry"
25
+ end
metadata ADDED
@@ -0,0 +1,114 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: minitest-test_profile
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Yuji Yaginuma
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2015-11-22 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: minitest
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.10'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.10'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '10.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '10.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: pry
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ description:
70
+ email:
71
+ - yuuji.yaginuma@gmail.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - ".gitignore"
77
+ - ".travis.yml"
78
+ - CODE_OF_CONDUCT.md
79
+ - Gemfile
80
+ - LICENSE.txt
81
+ - README.md
82
+ - Rakefile
83
+ - bin/console
84
+ - bin/setup
85
+ - lib/minitest/test_profile.rb
86
+ - lib/minitest/test_profile/reporter.rb
87
+ - lib/minitest/test_profile/version.rb
88
+ - lib/minitest/test_profile_plugin.rb
89
+ - minitest-test_profile.gemspec
90
+ homepage: https://github.com/y-yagi/minitest-test_profile
91
+ licenses:
92
+ - MIT
93
+ metadata: {}
94
+ post_install_message:
95
+ rdoc_options: []
96
+ require_paths:
97
+ - lib
98
+ required_ruby_version: !ruby/object:Gem::Requirement
99
+ requirements:
100
+ - - ">="
101
+ - !ruby/object:Gem::Version
102
+ version: '0'
103
+ required_rubygems_version: !ruby/object:Gem::Requirement
104
+ requirements:
105
+ - - ">="
106
+ - !ruby/object:Gem::Version
107
+ version: '0'
108
+ requirements: []
109
+ rubyforge_project:
110
+ rubygems_version: 2.4.5.1
111
+ signing_key:
112
+ specification_version: 4
113
+ summary: Show slow test as rspec profile options.
114
+ test_files: []