Showing 60 of 76 total issues
SessionStartCommandTest has no descriptive comment Open
class SessionStartCommandTest < Minitest::Spec
- Read upRead up
- Exclude checks
Classes and modules are the units of reuse and release. It is therefore considered good practice to annotate every class and module with a brief comment outlining its responsibilities.
Example
Given
class Dummy
# Do things...
end
Reek would emit the following warning:
test.rb -- 1 warning:
[1]:Dummy has no descriptive comment (IrresponsibleModule)
Fixing this is simple - just an explaining comment:
# The Dummy class is responsible for ...
class Dummy
# Do things...
end
RequestHelpers#assert_status calls 'last_response.status' 2 times Open
message ||= "Expected #{status}, got #{last_response.status}.\n"\
"#{last_response.body}"
assert_equal(status, last_response.status, message)
- Read upRead up
- Exclude checks
Duplication occurs when two fragments of code look nearly identical, or when two fragments of code have nearly identical effects at some conceptual level.
Reek implements a check for Duplicate Method Call.
Example
Here's a very much simplified and contrived example. The following method will report a warning:
def double_thing()
@other.thing + @other.thing
end
One quick approach to silence Reek would be to refactor the code thus:
def double_thing()
thing = @other.thing
thing + thing
end
A slightly different approach would be to replace all calls of double_thing
by calls to @other.double_thing
:
class Other
def double_thing()
thing + thing
end
end
The approach you take will depend on balancing other factors in your code.
Workflows::TagsMember assumes too much for instance variable '@form_attributes' Open
class TagsMember < Base
- Read upRead up
- Exclude checks
Classes should not assume that instance variables are set or present outside of the current class definition.
Good:
class Foo
def initialize
@bar = :foo
end
def foo?
@bar == :foo
end
end
Good as well:
class Foo
def foo?
bar == :foo
end
def bar
@bar ||= :foo
end
end
Bad:
class Foo
def go_foo!
@bar = :foo
end
def foo?
@bar == :foo
end
end
Example
Running Reek on:
class Dummy
def test
@ivar
end
end
would report:
[1]:InstanceVariableAssumption: Dummy assumes too much for instance variable @ivar
Note that this example would trigger this smell warning as well:
class Parent
def initialize(omg)
@omg = omg
end
end
class Child < Parent
def foo
@omg
end
end
The way to address the smell warning is that you should create an attr_reader
to use @omg
in the subclass and not access @omg
directly like this:
class Parent
attr_reader :omg
def initialize(omg)
@omg = omg
end
end
class Child < Parent
def foo
omg
end
end
Directly accessing instance variables is considered a smell because it breaks encapsulation and makes it harder to reason about code.
If you don't want to expose those methods as public API just make them private like this:
class Parent
def initialize(omg)
@omg = omg
end
private
attr_reader :omg
end
class Child < Parent
def foo
omg
end
end
Current Support in Reek
An instance variable must:
- be set in the constructor
- or be accessed through a method with lazy initialization / memoization.
If not, Instance Variable Assumption will be reported.
TimeHelpers has no descriptive comment Open
module TimeHelpers
- Read upRead up
- Exclude checks
Classes and modules are the units of reuse and release. It is therefore considered good practice to annotate every class and module with a brief comment outlining its responsibilities.
Example
Given
class Dummy
# Do things...
end
Reek would emit the following warning:
test.rb -- 1 warning:
[1]:Dummy has no descriptive comment (IrresponsibleModule)
Fixing this is simple - just an explaining comment:
# The Dummy class is responsible for ...
class Dummy
# Do things...
end
Aggregates::Member::Tag#== performs a nil-check Open
return if other.nil?
- Read upRead up
- Exclude checks
A NilCheck
is a type check. Failures of NilCheck
violate the "tell, don't ask" principle.
Additionally, type checks often mask bigger problems in your source code like not using OOP and / or polymorphism when you should.
Example
Given
class Klass
def nil_checker(argument)
if argument.nil?
puts "argument isn't nil!"
end
end
end
Reek would emit the following warning:
test.rb -- 1 warning:
[3]:Klass#nil_checker performs a nil-check. (NilCheck)
Roost::Config#secret_base is a writable attribute Open
attr_accessor :database_url, :secret_base, :web_url
- Read upRead up
- Exclude checks
A class that publishes a setter for an instance variable invites client classes to become too intimate with its inner workings, and in particular with its representation of state.
The same holds to a lesser extent for getters, but Reek doesn't flag those.
Example
Given:
class Klass
attr_accessor :dummy
end
Reek would emit the following warning:
reek test.rb
test.rb -- 1 warning:
[2]:Klass declares the writable attribute dummy (Attribute)
Roost::Config#database_url is a writable attribute Open
attr_accessor :database_url, :secret_base, :web_url
- Read upRead up
- Exclude checks
A class that publishes a setter for an instance variable invites client classes to become too intimate with its inner workings, and in particular with its representation of state.
The same holds to a lesser extent for getters, but Reek doesn't flag those.
Example
Given:
class Klass
attr_accessor :dummy
end
Reek would emit the following warning:
reek test.rb
test.rb -- 1 warning:
[2]:Klass declares the writable attribute dummy (Attribute)
Reactors::InvitationMailer#from doesn't depend on instance state (maybe move it to another class?) Open
def from(inviter)
- Read upRead up
- Exclude checks
A Utility Function is any instance method that has no dependency on the state of the instance.
EventHelpers#event_store doesn't depend on instance state (maybe move it to another class?) Open
def event_store
- Read upRead up
- Exclude checks
A Utility Function is any instance method that has no dependency on the state of the instance.
TimeHelpers#die_wende doesn't depend on instance state (maybe move it to another class?) Open
def die_wende
- Read upRead up
- Exclude checks
A Utility Function is any instance method that has no dependency on the state of the instance.
Aggregates::Member::TagList inherits from core class 'Array' Open
class TagList < Array
- Read upRead up
- Exclude checks
Subclassing core classes in Ruby can lead to unexpected side effects.
Knowing that Ruby has a core library, which is written in C, and a standard library, which is written in Ruby, if you do not know exactly how these core classes operate at the C level, you are gonna have a bad time.
Source: http://words.steveklabnik.com/beware-subclassing-ruby-core-classes
Reactors::InvitationMailer#subject doesn't depend on instance state (maybe move it to another class?) Open
def subject(inviter)
- Read upRead up
- Exclude checks
A Utility Function is any instance method that has no dependency on the state of the instance.
Workflows::TagsMember#steps doesn't depend on instance state (maybe move it to another class?) Open
def steps
- Read upRead up
- Exclude checks
A Utility Function is any instance method that has no dependency on the state of the instance.
Roost::Config#web_url is a writable attribute Open
attr_accessor :database_url, :secret_base, :web_url
- Read upRead up
- Exclude checks
A class that publishes a setter for an instance variable invites client classes to become too intimate with its inner workings, and in particular with its representation of state.
The same holds to a lesser extent for getters, but Reek doesn't flag those.
Example
Given:
class Klass
attr_accessor :dummy
end
Reek would emit the following warning:
reek test.rb
test.rb -- 1 warning:
[2]:Klass declares the writable attribute dummy (Attribute)
RequestHelpers#secret doesn't depend on instance state (maybe move it to another class?) Open
def secret
- Read upRead up
- Exclude checks
A Utility Function is any instance method that has no dependency on the state of the instance.
Workflows::MemberRegisters#steps doesn't depend on instance state (maybe move it to another class?) Open
def steps
- Read upRead up
- Exclude checks
A Utility Function is any instance method that has no dependency on the state of the instance.
DataHelpers#fixtures doesn't depend on instance state (maybe move it to another class?) Open
def fixtures(file)
- Read upRead up
- Exclude checks
A Utility Function is any instance method that has no dependency on the state of the instance.
Complex method Web::TagsController::post#/tags (20.5) Open
post '/tags' do
requires_authorization
Commands.handle(
'Profile',
- Read upRead up
- Exclude checks
Flog calculates the ABC score for methods. The ABC score is based on assignments, branches (method calls), and conditions.
You can read more about ABC metrics or the flog tool
Possible shell escape sequence injection vulnerability in Rack Open
rack (2.2.3)
- Read upRead up
- Exclude checks
Advisory: CVE-2022-30123
Criticality: Critical
URL: https://groups.google.com/g/ruby-security-ann/c/LWB10kWzag8
Solution: upgrade to >= 2.0.9.1, ~> 2.0.9, >= 2.1.4.1, ~> 2.1.4, >= 2.2.3.1
Denial of Service Vulnerability in Rack Multipart Parsing Open
rack (2.2.3)
- Read upRead up
- Exclude checks
Advisory: CVE-2022-30122
Criticality: High
URL: https://groups.google.com/g/ruby-security-ann/c/L2Axto442qk
Solution: upgrade to >= 2.0.9.1, ~> 2.0.9, >= 2.1.4.1, ~> 2.1.4, >= 2.2.3.1