Skip to content

Commit 0442fd9

Browse files
committed
Refactoring
- More robust loop, better error handling - Move from app/ to lib/ - Add Loggers - Migrate from Minitest to RSpec
1 parent cf5f33d commit 0442fd9

33 files changed

+744
-324
lines changed

.dockerignore

+1
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ test
88
Rakefile
99
Dockerfile
1010
coverage
11+
Guardfile

.github/workflows/push.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
run: bundle exec rubocop
3636

3737
- name: Run tests
38-
run: bundle exec rake test
38+
run: bundle exec rake spec
3939

4040
- name: Send test coverage to CodeClimate
4141
uses: paambaati/[email protected]

.rspec

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
--require spec_helper

.rubocop.yml

+33-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
require:
2-
- rubocop-minitest
2+
- rubocop-rspec
33
- rubocop-rake
44
- rubocop-performance
55

@@ -10,26 +10,52 @@ AllCops:
1010
- 'vendor/**/*'
1111
NewCops: enable
1212

13-
Style/Documentation:
13+
# Layout
14+
15+
Layout/LineLength:
16+
Max: 130
17+
18+
Layout/LineEndStringConcatenationIndentation:
1419
Enabled: false
1520

16-
Style/FrozenStringLiteralComment:
21+
# Metrics
22+
23+
Metrics/AbcSize:
24+
Max: 18
25+
26+
Metrics/ClassLength:
1727
Enabled: false
1828

1929
Metrics/MethodLength:
2030
Max: 20
2131

22-
Metrics/ClassLength:
23-
Max: 200
32+
# Style
33+
34+
Style/Documentation:
35+
Enabled: false
36+
37+
Style/FrozenStringLiteralComment:
38+
Enabled: false
2439

2540
Style/TrailingCommaInArguments:
2641
EnforcedStyleForMultiline: consistent_comma
2742

43+
Style/TrailingCommaInArrayLiteral:
44+
EnforcedStyleForMultiline: consistent_comma
45+
2846
Style/TrailingCommaInHashLiteral:
2947
EnforcedStyleForMultiline: consistent_comma
3048

31-
Layout/LineEndStringConcatenationIndentation:
49+
# RSpec
50+
51+
RSpec/ExampleLength:
52+
Max: 20
53+
54+
RSpec/NestedGroups:
55+
Max: 4
56+
57+
RSpec/NoExpectationExample:
3258
Enabled: false
3359

34-
Layout/FirstArrayElementIndentation:
60+
RSpec/MultipleExpectations:
3561
Enabled: false

.vscode/tasks.json

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "guard-rspec",
6+
"command": "rbenv",
7+
"args": ["exec", "bundle", "exec", "guard"],
8+
"isBackground": true,
9+
"problemMatcher": {
10+
"applyTo": "allDocuments",
11+
"owner": "Ruby",
12+
"fileLocation": ["relative", "${workspaceRoot}"],
13+
"pattern": [
14+
{
15+
"regexp": "^(Error|Warning|Info):.*$",
16+
"severity": 1
17+
},
18+
{
19+
"regexp": "^\\s*[^#]+#[^:]+:$",
20+
"message": 0
21+
},
22+
{
23+
"regexp": "^\\s*([^:]+):(.*)$",
24+
"message": 5
25+
},
26+
{
27+
"regexp": "^ ([^:]+):(\\d+):in (.+)$",
28+
"file": 1,
29+
"location": 2,
30+
"code": 3
31+
}
32+
],
33+
"background": {
34+
"activeOnStart": true,
35+
"beginsPattern": "^# Running:$",
36+
"endsPattern": "^\\d+ runs.*$"
37+
}
38+
},
39+
"group": {
40+
"kind": "test",
41+
"isDefault": true
42+
}
43+
}
44+
]
45+
}

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ WORKDIR /mqtt-collector
3232
COPY --from=Builder /usr/local/bundle/ /usr/local/bundle/
3333
COPY . /mqtt-collector/
3434

35-
ENTRYPOINT bundle exec app/main.rb
35+
ENTRYPOINT bundle exec app.rb

Gemfile

+13-5
Original file line numberDiff line numberDiff line change
@@ -15,25 +15,33 @@ gem 'csv'
1515
# Support for encoding and decoding binary data using a Base64 representation. (https://github.com/ruby/base64)
1616
gem 'base64'
1717

18+
group :development do
19+
# Guard gem for RSpec (https://github.com/guard/guard-rspec)
20+
gem 'guard-rspec', require: false
21+
22+
# Pretty print Ruby objects with proper indentation and colors (https://github.com/amazing-print/amazing_print)
23+
gem 'amazing_print'
24+
end
25+
1826
group :development, :test do
19-
# minitest provides a complete suite of testing facilities supporting TDD, BDD, mocking, and benchmarking (https://github.com/minitest/minitest)
20-
gem 'minitest'
27+
# rspec-3.13.0 (http://github.com/rspec)
28+
gem 'rspec'
2129

2230
# Rake is a Make-like program implemented in Ruby (https://github.com/ruby/rake)
2331
gem 'rake'
2432

2533
# Automatic Ruby code style checking tool. (https://github.com/rubocop/rubocop)
2634
gem 'rubocop'
2735

28-
# Automatic Minitest code style checking tool.
29-
gem 'rubocop-minitest'
30-
3136
# A RuboCop plugin for Rake (https://github.com/rubocop/rubocop-rake)
3237
gem 'rubocop-rake'
3338

3439
# Automatic performance checking tool for Ruby code. (https://github.com/rubocop/rubocop-performance)
3540
gem 'rubocop-performance'
3641

42+
# Code style checking for RSpec files (https://github.com/rubocop/rubocop-rspec)
43+
gem 'rubocop-rspec'
44+
3745
# Record your test suite's HTTP interactions and replay them during future test runs for fast, deterministic, accurate tests. (https://benoittgt.github.io/vcr)
3846
gem 'vcr'
3947

Gemfile.lock

+61-6
Original file line numberDiff line numberDiff line change
@@ -3,32 +3,78 @@ GEM
33
specs:
44
addressable (2.8.6)
55
public_suffix (>= 2.0.2, < 6.0)
6+
amazing_print (1.6.0)
67
ast (2.4.2)
78
base64 (0.2.0)
89
bigdecimal (3.1.7)
910
climate_control (1.2.0)
11+
coderay (1.1.3)
1012
crack (1.0.0)
1113
bigdecimal
1214
rexml
1315
csv (3.2.8)
16+
diff-lcs (1.5.1)
1417
docile (1.4.0)
1518
dotenv (3.1.0)
19+
ffi (1.16.3)
20+
formatador (1.1.0)
21+
guard (2.18.1)
22+
formatador (>= 0.2.4)
23+
listen (>= 2.7, < 4.0)
24+
lumberjack (>= 1.0.12, < 2.0)
25+
nenv (~> 0.1)
26+
notiffany (~> 0.0)
27+
pry (>= 0.13.0)
28+
shellany (~> 0.0)
29+
thor (>= 0.18.1)
30+
guard-compat (1.2.1)
31+
guard-rspec (4.7.3)
32+
guard (~> 2.1)
33+
guard-compat (~> 1.1)
34+
rspec (>= 2.99.0, < 4.0)
1635
hashdiff (1.1.0)
1736
influxdb-client (3.1.0)
1837
json (2.7.1)
1938
language_server-protocol (3.17.0.3)
20-
minitest (5.22.3)
39+
listen (3.9.0)
40+
rb-fsevent (~> 0.10, >= 0.10.3)
41+
rb-inotify (~> 0.9, >= 0.9.10)
42+
lumberjack (1.2.10)
43+
method_source (1.0.0)
2144
mqtt (0.6.0)
45+
nenv (0.3.0)
46+
notiffany (0.1.3)
47+
nenv (~> 0.1)
48+
shellany (~> 0.0)
2249
parallel (1.24.0)
2350
parser (3.3.0.5)
2451
ast (~> 2.4.1)
2552
racc
53+
pry (0.14.2)
54+
coderay (~> 1.1)
55+
method_source (~> 1.0)
2656
public_suffix (5.0.4)
2757
racc (1.7.3)
2858
rainbow (3.1.1)
2959
rake (13.1.0)
60+
rb-fsevent (0.11.2)
61+
rb-inotify (0.10.1)
62+
ffi (~> 1.0)
3063
regexp_parser (2.9.0)
3164
rexml (3.2.6)
65+
rspec (3.13.0)
66+
rspec-core (~> 3.13.0)
67+
rspec-expectations (~> 3.13.0)
68+
rspec-mocks (~> 3.13.0)
69+
rspec-core (3.13.0)
70+
rspec-support (~> 3.13.0)
71+
rspec-expectations (3.13.0)
72+
diff-lcs (>= 1.2.0, < 2.0)
73+
rspec-support (~> 3.13.0)
74+
rspec-mocks (3.13.0)
75+
diff-lcs (>= 1.2.0, < 2.0)
76+
rspec-support (~> 3.13.0)
77+
rspec-support (3.13.1)
3278
rubocop (1.62.1)
3379
json (~> 2.3)
3480
language_server-protocol (>= 3.17.0)
@@ -42,21 +88,28 @@ GEM
4288
unicode-display_width (>= 2.4.0, < 3.0)
4389
rubocop-ast (1.31.2)
4490
parser (>= 3.3.0.4)
45-
rubocop-minitest (0.35.0)
46-
rubocop (>= 1.61, < 2.0)
47-
rubocop-ast (>= 1.31.1, < 2.0)
91+
rubocop-capybara (2.20.0)
92+
rubocop (~> 1.41)
93+
rubocop-factory_bot (2.25.1)
94+
rubocop (~> 1.41)
4895
rubocop-performance (1.20.2)
4996
rubocop (>= 1.48.1, < 2.0)
5097
rubocop-ast (>= 1.30.0, < 2.0)
5198
rubocop-rake (0.6.0)
5299
rubocop (~> 1.0)
100+
rubocop-rspec (2.27.1)
101+
rubocop (~> 1.40)
102+
rubocop-capybara (~> 2.17)
103+
rubocop-factory_bot (~> 2.22)
53104
ruby-progressbar (1.13.0)
105+
shellany (0.0.1)
54106
simplecov (0.22.0)
55107
docile (~> 1.1)
56108
simplecov-html (~> 0.11)
57109
simplecov_json_formatter (~> 0.1)
58110
simplecov-html (0.12.3)
59111
simplecov_json_formatter (0.1.4)
112+
thor (1.3.1)
60113
unicode-display_width (2.5.0)
61114
vcr (6.2.0)
62115
webmock (3.23.0)
@@ -68,18 +121,20 @@ PLATFORMS
68121
ruby
69122

70123
DEPENDENCIES
124+
amazing_print
71125
base64
72126
climate_control
73127
csv
74128
dotenv
129+
guard-rspec
75130
influxdb-client
76-
minitest
77131
mqtt
78132
rake
133+
rspec
79134
rubocop
80-
rubocop-minitest
81135
rubocop-performance
82136
rubocop-rake
137+
rubocop-rspec
83138
simplecov
84139
vcr
85140
webmock

Guardfile

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
# A sample Guardfile
2+
# More info at https://github.com/guard/guard#readme
3+
4+
## Uncomment and set this to only include directories you want to watch
5+
# directories %w(app lib config test spec features) \
6+
# .select{|d| Dir.exist?(d) ? d : UI.warning("Directory #{d} does not exist")}
7+
8+
## Note: if you are using the `directories` clause above and you are not
9+
## watching the project directory ('.'), then you will want to move
10+
## the Guardfile to a watched dir and symlink it back, e.g.
11+
#
12+
# $ mkdir config
13+
# $ mv Guardfile config/
14+
# $ ln -s config/Guardfile .
15+
#
16+
# and, you'll have to watch "config/Guardfile" instead of "Guardfile"
17+
18+
# Ignore unneeded folders to prevent high CPU load
19+
# https://stackoverflow.com/a/20543493/57950
20+
ignore(
21+
[
22+
%r{^coverage/*},
23+
%r{^.vscode/*},
24+
%r{^.github/*},
25+
],
26+
)
27+
28+
# NOTE: The cmd option is now required due to the increasing number of ways
29+
# rspec may be run, below are examples of the most common uses.
30+
# * bundler: 'bundle exec rspec'
31+
# * bundler binstubs: 'bin/rspec'
32+
# * spring: 'bin/rspec' (This will use spring if running and you have
33+
# installed the spring binstubs per the docs)
34+
# * zeus: 'zeus rspec' (requires the server to be started separately)
35+
# * 'just' rspec: 'rspec'
36+
37+
guard :rspec, cmd: 'rspec --colour --format documentation --fail-fast' do
38+
directories(%w[lib spec])
39+
40+
require 'guard/rspec/dsl'
41+
dsl = Guard::RSpec::Dsl.new(self)
42+
43+
# RSpec files
44+
rspec = dsl.rspec
45+
watch(rspec.spec_files)
46+
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" }
47+
watch(rspec.spec_helper) { rspec.spec_dir }
48+
watch(rspec.spec_support) { rspec.spec_dir }
49+
end

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ For development you need a recent Ruby setup. On a Mac, I recommend [rbenv](http
4141
### Run the app
4242

4343
```bash
44-
bundle exec app/main.rb
44+
bundle exec app.rb
4545
```
4646

4747
### Run tests

Rakefile

+4-11
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,6 @@
1-
require 'rubygems'
2-
require 'bundler'
3-
require 'rake/testtask'
4-
require 'dotenv'
5-
Dotenv.load('.env.test')
1+
require 'rake'
2+
require 'rspec/core/rake_task'
63

7-
Rake::TestTask.new :test do |t|
8-
t.libs << 'test' << 'app'
9-
t.test_files = FileList['test/**/*_test.rb']
10-
t.verbose = true
11-
end
4+
RSpec::Core::RakeTask.new(:spec)
125

13-
task default: :test
6+
task default: :spec

0 commit comments

Comments
 (0)