mrubyc-test 0.5.2 → 0.7.0.pre.rc0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e23b2623b3f573c6d9d70eb01f2e8497c8cf3642534cabad1b7663fee6db7df8
4
- data.tar.gz: 1ef942b5a637a3a018eadfa208a7672687fc14af8ba71bee6eccdc604276072e
3
+ metadata.gz: 3999a4b4fc42b7080d1e1923475b9b175c0bfefb9f7438aab342a61d2693de38
4
+ data.tar.gz: d734e7f81126a95414c4aff68175f57410653a45e15b4b3d72f5a6ef1cc69e9c
5
5
  SHA512:
6
- metadata.gz: 311ceadb511631026dc2a3f7f78ad82c8ba9d280fb31e4ae09be9f5b0c0506098c1a2026b2f78df325cce1eebf56fb73305534c0b7ae328707a7c219e5fea4f4
7
- data.tar.gz: eef3be870a0ae548b0f6de45cc157f935bf8152c3fbe28622612ef169ee81ccf0264ebbcab5a192b9b2745023c2a02522ad41996713ed25cd52d859282e79e30
6
+ metadata.gz: a28f63efee86b0222ad4c316cf90023fefa18331179f591251d45f5f7145c3bdb102650386a93332869e5bb454f4e8fec6fb5a414233d516e8279aff0a3e6c28
7
+ data.tar.gz: e8ffe7d3cd5f3414bf91d37a2dcd8f5da9dc79261f9fc733dda0faf085bdca5f13f4c93452b43b583848560cb3fb7aeb10454c8571c0d398e975c984fc84d812
data/Gemfile.lock CHANGED
@@ -1,43 +1,44 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- mrubyc-test (0.5.0)
5
- activesupport (~> 5.2)
4
+ mrubyc-test (0.6.2)
5
+ activesupport (~> 6.0)
6
6
  rufo (~> 0.12)
7
7
  thor (~> 1.0)
8
8
 
9
9
  GEM
10
10
  remote: https://rubygems.org/
11
11
  specs:
12
- activesupport (5.2.4.1)
12
+ activesupport (6.1.4.1)
13
13
  concurrent-ruby (~> 1.0, >= 1.0.2)
14
- i18n (>= 0.7, < 2)
15
- minitest (~> 5.1)
16
- tzinfo (~> 1.1)
17
- concurrent-ruby (1.1.6)
18
- diff-lcs (1.3)
19
- i18n (1.8.2)
14
+ i18n (>= 1.6, < 2)
15
+ minitest (>= 5.1)
16
+ tzinfo (~> 2.0)
17
+ zeitwerk (~> 2.3)
18
+ concurrent-ruby (1.1.9)
19
+ diff-lcs (1.4.4)
20
+ i18n (1.8.10)
20
21
  concurrent-ruby (~> 1.0)
21
- minitest (5.14.0)
22
- rake (13.0.1)
23
- rspec (3.9.0)
24
- rspec-core (~> 3.9.0)
25
- rspec-expectations (~> 3.9.0)
26
- rspec-mocks (~> 3.9.0)
27
- rspec-core (3.9.1)
28
- rspec-support (~> 3.9.1)
29
- rspec-expectations (3.9.1)
22
+ minitest (5.14.4)
23
+ rake (13.0.6)
24
+ rspec (3.10.0)
25
+ rspec-core (~> 3.10.0)
26
+ rspec-expectations (~> 3.10.0)
27
+ rspec-mocks (~> 3.10.0)
28
+ rspec-core (3.10.1)
29
+ rspec-support (~> 3.10.0)
30
+ rspec-expectations (3.10.1)
30
31
  diff-lcs (>= 1.2.0, < 2.0)
31
- rspec-support (~> 3.9.0)
32
- rspec-mocks (3.9.1)
32
+ rspec-support (~> 3.10.0)
33
+ rspec-mocks (3.10.2)
33
34
  diff-lcs (>= 1.2.0, < 2.0)
34
- rspec-support (~> 3.9.0)
35
- rspec-support (3.9.2)
36
- rufo (0.12.0)
37
- thor (1.0.1)
38
- thread_safe (0.3.6)
39
- tzinfo (1.2.6)
40
- thread_safe (~> 0.1)
35
+ rspec-support (~> 3.10.0)
36
+ rspec-support (3.10.2)
37
+ rufo (0.13.0)
38
+ thor (1.1.0)
39
+ tzinfo (2.0.4)
40
+ concurrent-ruby (~> 1.0)
41
+ zeitwerk (2.4.2)
41
42
 
42
43
  PLATFORMS
43
44
  ruby
@@ -49,4 +50,4 @@ DEPENDENCIES
49
50
  rspec (~> 3.9)
50
51
 
51
52
  BUNDLED WITH
52
- 2.1.2
53
+ 2.2.5
data/README.md CHANGED
@@ -4,9 +4,9 @@
4
4
 
5
5
  mrubyc-test is an unit test framework for [mruby/c](https://github.com/mrubyc/mrubyc), supporting basic assertions, stub and mock.
6
6
 
7
- ## Acknowledgements
7
+ ## Dependency
8
8
 
9
- The API design and implementation of this gem is greatly inspired by [test-unit](https://github.com/test-unit/test-unit). Thank the great work.
9
+ - mrubyc-test 0.7.0+ depends on mrubyc 3.0+
10
10
 
11
11
  ## Features
12
12
 
@@ -38,7 +38,7 @@ Or install it yourself as:
38
38
  ## Usage
39
39
 
40
40
  Assuming you are using [mrubyc-utils](https://github.com/hasumikin/mrubyc-utils) to manage your project and [rbenv](https://github.com/rbenv/rbenv) to manage Ruby versions.
41
- It means you have `.mrubycconfig` and `.ruby-version` in the top directory of your project.
41
+ It means you have `Mrubycfile` and `.ruby-version` in the top directory of your project.
42
42
 
43
43
  Besides, you have to locate mruby model files that are the target of testing like `mrblib/models/class_name.rb`
44
44
 
@@ -49,8 +49,8 @@ This is an example of ESP32 project:
49
49
  ```
50
50
  ~/your_project $ tree
51
51
  .
52
- ├── .mrubycconfig # Created by mrubyc-utils
53
- ├── .ruby-version # It should be mruby's version something like 'mruby-1.4.1'
52
+ ├── Mrubycfile # Created by mrubyc-utils
53
+ ├── .ruby-version # It should be mruby's version like 'mruby-3.0.0'
54
54
  ├── Makefile
55
55
  ├── build
56
56
  ├── components
@@ -144,6 +144,10 @@ end
144
144
  - Other assertions like LT(<), GTE(>=), include?, ...etc.
145
145
  - bla bla bla
146
146
 
147
+ ## Acknowledgements
148
+
149
+ The API design and implementation of this gem is greatly inspired by [test-unit](https://github.com/test-unit/test-unit). Thank the great work.
150
+
147
151
  ## Contributing
148
152
 
149
153
  Bug reports and pull requests are welcome on GitHub at https://github.com/mrubyc/mrubyc-test. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
data/bin/console CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
3
  require "bundler/setup"
4
- require "mrubyc/test"
4
+ require "mrubyc-test"
5
5
 
6
6
  # You can add fixtures and/or initialization code here to make experimenting
7
7
  # with your gem easier. You can also use a different console, if you like.
@@ -8,21 +8,31 @@ module Mrubyc
8
8
  class Config
9
9
  class << self
10
10
  def read(check: true)
11
- FileUtils.touch('.mrubycconfig')
12
- config = YAML.load_file('.mrubycconfig')
11
+ config = YAML.load_file(mrubycfile)
13
12
  if check
14
13
  if !config || config == [] || !config['test_dir']
15
- raise 'Check if `.mrubycconfig` exists.'
14
+ raise 'Check if `Mrubycfile or .mrubycconfig` exists.'
16
15
  end
17
16
  end
18
17
  config || {}
19
18
  end
20
19
 
21
20
  def write(config)
22
- File.open('.mrubycconfig', 'r+') do |file|
21
+ File.open(mrubycfile, 'r+') do |file|
23
22
  file.write(config.to_yaml)
24
23
  end
25
24
  end
25
+
26
+ def mrubycfile
27
+ if File.exists? 'Mrubycfile'
28
+ 'Mrubycfile'
29
+ elsif File.exists? '.mrubycconfig'
30
+ '.mrubycconfig'
31
+ else
32
+ FileUtils.touch 'Mrubycfile'
33
+ 'Mrubycfile'
34
+ end
35
+ end
26
36
  end
27
37
  end
28
38
  end
@@ -10,6 +10,7 @@ module Mrubyc
10
10
  def run(model_files: [], test_files:)
11
11
  # get information from model files(application code)
12
12
  model_files.each do |model_file|
13
+ puts "loading #{model_file}"
13
14
  load model_file
14
15
  class_name = File.basename(model_file, '.rb').camelize
15
16
  begin
@@ -18,6 +19,7 @@ module Mrubyc
18
19
  print "\e[33m"
19
20
  puts "[WARN] #{model_file} doesn't have corresponding class `#{class_name}`."
20
21
  print "\e[m"
22
+ next
21
23
  end
22
24
  model_class.class_eval do
23
25
  def method_missing(_method_name, *_args)
@@ -10,11 +10,25 @@ module Mrubyc
10
10
  class << self
11
11
  def run(model_files: [], test_files:, test_cases:, verbose:, method_name_pattern:)
12
12
  config = Mrubyc::Test::Config.read
13
- test_erb = ERB.new(File.read(File.expand_path('../../../../templates/test.rb.erb', __FILE__)), nil, '-')
14
- models_erb = ERB.new(File.read(File.expand_path('../../../../templates/models.rb.erb', __FILE__)), nil, '-')
13
+ test_erb = ERB.new(
14
+ File.read(
15
+ File.expand_path('../../../../templates/test.rb.erb', __FILE__)
16
+ ), nil, '-'
17
+ )
18
+ models_erb = ERB.new(
19
+ File.read(
20
+ File.expand_path('../../../../templates/models.rb.erb', __FILE__)
21
+ ), nil, '-'
22
+ )
15
23
  mrubyc_class_dir = File.expand_path('../../../../mrubyc-ext/', __FILE__)
16
- File.write(File.join(config['test_tmp_dir'], 'test.rb'), Rufo.format(test_erb.result(binding)))
17
- File.write(File.join(config['test_tmp_dir'], 'models.rb'), Rufo.format(models_erb.result(binding)))
24
+ File.write(File.join(
25
+ config['test_tmp_dir'], 'test.rb'),
26
+ Rufo.format(test_erb.result(binding))
27
+ )
28
+ File.write(File.join(
29
+ config['test_tmp_dir'], 'models.rb'),
30
+ Rufo.format(models_erb.result(binding))
31
+ )
18
32
  end
19
33
  end
20
34
  end
@@ -11,12 +11,12 @@ module Mrubyc
11
11
  puts 'Initializing...'
12
12
  puts
13
13
 
14
- puts ' touch .mrubycconfig'
14
+ puts ' touch Mrubycfile'
15
15
  config = Mrubyc::Test::Config.read(check: false)
16
16
  config['test_dir'] = 'test'
17
17
  config['test_tmp_dir'] = 'test/tmp'
18
18
  config['mruby_lib_dir'] = 'mrblib'
19
- puts ' add config to .mrubycconfig'
19
+ puts ' add config to Mrubycfile'
20
20
  Mrubyc::Test::Config.write(config)
21
21
 
22
22
  hal_dir = "#{config['test_tmp_dir']}/hal"
@@ -1,5 +1,5 @@
1
1
  module Mrubyc
2
2
  module Test
3
- VERSION = "0.5.2"
3
+ VERSION = "0.7.0-rc0"
4
4
  end
5
5
  end
@@ -86,9 +86,9 @@ class MrubycTestCase
86
86
  end
87
87
  end
88
88
 
89
- def self.description(text)
89
+ def description(text)
90
90
  end
91
- def self.desc(text)
91
+ def desc(text)
92
92
  end
93
93
  def setup
94
94
  end
data/lib/mrubyc-test.rb CHANGED
@@ -25,30 +25,30 @@ module Mrubyc::Test
25
25
  def prepare(test_files, verbose, method_name_pattern)
26
26
  config = Mrubyc::Test::Config.read
27
27
  model_files = Dir.glob(File.join(Dir.pwd, config['mruby_lib_dir'], 'models', '*.rb'))
28
-
29
28
  # gather attributes from your implementations and tests
30
- attributes = Mrubyc::Test::Generator::Attribute.run(model_files: model_files, test_files: test_files)
31
-
29
+ attributes = Mrubyc::Test::Generator::Attribute.run(
30
+ model_files: model_files,
31
+ test_files: test_files
32
+ )
32
33
  # convert attributes into tast_cases
33
34
  test_cases = Mrubyc::Test::Generator::TestCase.run(attributes)
34
-
35
35
  # generate a ruby script that will be compiled by mrbc and executed in mruby/c VM
36
- Mrubyc::Test::Generator::Script.run(model_files: model_files, test_files: test_files, test_cases: test_cases, verbose: verbose, method_name_pattern: method_name_pattern)
36
+ Mrubyc::Test::Generator::Script.run(
37
+ model_files: model_files,
38
+ test_files: test_files,
39
+ test_cases: test_cases,
40
+ verbose: verbose,
41
+ method_name_pattern: method_name_pattern
42
+ )
37
43
  end
38
44
 
39
- def make
45
+ def make(mrbc_path)
40
46
  config = Mrubyc::Test::Config.read
41
47
  tmp_dir = File.join(Dir.pwd, config['test_tmp_dir'])
42
48
  puts "cd #{tmp_dir}"
43
49
  puts
44
50
  exit_code = 0
45
51
  pwd = Dir.pwd
46
- mruby_version = File.read('.ruby-version').gsub("\n", '').chomp
47
- unless mruby_version.index('mruby')
48
- puts '.ruby-version doesn\'t set `mruby-x.x.x It is recommended to use the latest version of https://github.com/hasumikin/mrubyc-utils`'
49
- print 'You can specify the version name of mruby [mruby-x.x.x]: '
50
- mruby_version = STDIN.gets.chomp
51
- end
52
52
  hal_path = "#{pwd}/#{config['mrubyc_src_dir']}/hal"
53
53
  hal_bak_path = "#{pwd}/#{config['mrubyc_src_dir']}/~hal"
54
54
  FileUtils.mv(hal_path, hal_bak_path) if FileTest.exist?(hal_path)
@@ -56,9 +56,9 @@ module Mrubyc::Test
56
56
  FileUtils.ln_s "#{pwd}/#{config['test_tmp_dir']}/hal", "#{pwd}/#{config['mrubyc_src_dir']}/hal"
57
57
  Dir.chdir(tmp_dir) do
58
58
  [
59
- "RBENV_VERSION=#{mruby_version} mrbc -E -B test test.rb",
60
- "RBENV_VERSION=#{mruby_version} mrbc -E -B models models.rb",
61
- "cc -I #{pwd}/#{config['mrubyc_src_dir']} -o test main.c #{pwd}/#{config['mrubyc_src_dir']}/*.c #{pwd}/#{config['mrubyc_src_dir']}/hal/*.c #{ENV["CFLAGS"]} #{ENV["LDFLAGS"]}",
59
+ "#{mrbc_path} -B test test.rb",
60
+ "#{mrbc_path} -B models models.rb",
61
+ "cc -O0 -g3 -Wall -I #{pwd}/#{config['mrubyc_src_dir']} -o test main.c #{pwd}/#{config['mrubyc_src_dir']}/*.c #{pwd}/#{config['mrubyc_src_dir']}/hal/*.c -DMRBC_USE_HAL_POSIX #{ENV["CFLAGS"]} #{ENV["LDFLAGS"]}",
62
62
  "./test"].each do |cmd|
63
63
  puts cmd
64
64
  puts
@@ -84,21 +84,57 @@ module Mrubyc::Test
84
84
 
85
85
  end
86
86
 
87
- desc 'test', '[Default command] Execute test. You can specify a test file like `mrubyc-test test test/array_test.rb`'
88
- option :every, type: :numeric, default: 10, aliases: "-e", banner: "NUMBER - To avoid Out of Memory, test will be devided up to every specified NUMBER of xxx_test.rb files"
89
- option :verbose, type: :boolean, default: false, aliases: "-v", banner: "[true/false] - Show test result verbosely"
90
- option :name, type: :string, aliases: "-n", banner: "NAME - Specify the NAME of tests you want to run. If you write --name='/PATTERN/', it will be processed as a regular expression. It must be single-quoted and doubled-backslash. eg) --name='/a\\\\db/' will create Regexp object `/a\\db/` and match strings like `a1b`"
87
+ desc 'test', <<~DESC
88
+ [Default command]
89
+ Execute test. You can specify a test file like
90
+ `mrubyc-test test test/array_test.rb`'
91
+ DESC
92
+ option :every, type: :numeric, default: 10, aliases: "-e",
93
+ banner: <<~DESC.chomp
94
+ NUMBER
95
+ To avoid Out of Memory, test will be devided up to
96
+ every specified NUMBER of xxx_test.rb files
97
+ DESC
98
+ option :verbose, type: :boolean, default: false, aliases: "-v",
99
+ banner: "[true/false] - Show test result verbosely"
100
+ option :name, type: :string, aliases: "-n",
101
+ banner: <<~DESC.chomp
102
+ NAME
103
+ Specify the NAME of tests you want to run. If you
104
+ write --name='/PATTERN/', it will be processed as a regular
105
+ expression. It must be single-quoted and doubled-backslash.
106
+ eg) --name='/a\\\\db/' will create Regexp object `/a\\db/`
107
+ and match strings like `a1b`
108
+ DESC
109
+ option :mrbc_path, type: :string, aliases: "-p",
110
+ banner: <<~DESC.chomp
111
+ PATH
112
+ Specify the path to mrbc.
113
+ eg: /home/hoge/mruby/build/host/bin/mrbc
114
+ RBENV_VERSION will be ignored if you specify this option.
115
+ DESC
91
116
  def test(testfilepath = "test/*.rb")
92
117
  init_env
118
+ config = Mrubyc::Test::Config.read
93
119
  method_name_pattern = (%r{\A/(.*)/\Z} =~ options[:name] ? Regexp.new($1) : options[:name])
94
120
  test_path = if testfilepath == ""
95
121
  File.join(Dir.pwd, config['test_dir'], "*.rb")
96
122
  else
97
123
  File.join(Dir.pwd, testfilepath)
98
124
  end
125
+ mrbc_path = options[:mrbc_path] || config['mrbc_path']
126
+ unless mrbc_path
127
+ mruby_version = File.read('.ruby-version').gsub("\n", '').chomp
128
+ unless mruby_version.index('mruby')
129
+ puts '.ruby-version doesn\'t set `mruby-x.x.x It is recommended to use the latest version of https://github.com/hasumikin/mrubyc-utils`'
130
+ print 'You can specify the version name of mruby [mruby-x.x.x]: '
131
+ mruby_version = STDIN.gets.chomp
132
+ end
133
+ "RBENV_VERSION=#{mruby_version} mrbc"
134
+ end
99
135
  Dir.glob(test_path).each_slice(options[:every]) do |test_files|
100
136
  prepare(test_files, options[:verbose], method_name_pattern)
101
- make
137
+ make(mrbc_path)
102
138
  end
103
139
  end
104
140
 
@@ -7,7 +7,7 @@
7
7
  # For more information, see <%= Gem.loaded_specs['mrubyc-test']&.homepage %>
8
8
  #
9
9
 
10
- if RUBY_VERSION == '1.9' && MRUBYC_VERSION
10
+ if RUBY_ENGINE == 'mruby/c'
11
11
  class Math
12
12
  end
13
13
  class Numeric
data/mrubyc-test.gemspec CHANGED
@@ -28,6 +28,6 @@ Gem::Specification.new do |spec|
28
28
  spec.add_development_dependency "rspec", "~> 3.9"
29
29
 
30
30
  spec.add_dependency "thor", "~> 1.0"
31
- spec.add_dependency "activesupport", "~> 5.2"
31
+ spec.add_dependency "activesupport", "~> 6.0"
32
32
  spec.add_dependency "rufo", "~> 0.12"
33
33
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mrubyc-test
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.2
4
+ version: 0.7.0.pre.rc0
5
5
  platform: ruby
6
6
  authors:
7
7
  - HASUMI Hitoshi
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-04-02 00:00:00.000000000 Z
11
+ date: 2021-09-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -72,14 +72,14 @@ dependencies:
72
72
  requirements:
73
73
  - - "~>"
74
74
  - !ruby/object:Gem::Version
75
- version: '5.2'
75
+ version: '6.0'
76
76
  type: :runtime
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
- version: '5.2'
82
+ version: '6.0'
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: rufo
85
85
  requirement: !ruby/object:Gem::Requirement
@@ -137,7 +137,7 @@ homepage: https://github.com/mrubyc/mrubyc-test
137
137
  licenses:
138
138
  - BSD-3-Clause
139
139
  metadata: {}
140
- post_install_message:
140
+ post_install_message:
141
141
  rdoc_options: []
142
142
  require_paths:
143
143
  - lib
@@ -148,12 +148,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
148
148
  version: '0'
149
149
  required_rubygems_version: !ruby/object:Gem::Requirement
150
150
  requirements:
151
- - - ">="
151
+ - - ">"
152
152
  - !ruby/object:Gem::Version
153
- version: '0'
153
+ version: 1.3.1
154
154
  requirements: []
155
- rubygems_version: 3.1.2
156
- signing_key:
155
+ rubygems_version: 3.2.17
156
+ signing_key:
157
157
  specification_version: 4
158
158
  summary: Test Framework for mruby/c
159
159
  test_files: []