Class: Fastlane::Actions::EnsureNoDebugCodeAction

Inherits:
Fastlane::Action show all
Defined in:
fastlane/lib/fastlane/actions/ensure_no_debug_code.rb

Constant Summary

Constants inherited from Fastlane::Action

Fastlane::Action::AVAILABLE_CATEGORIES, Fastlane::Action::RETURN_TYPES

Documentation collapse

Class Method Summary collapse

Methods inherited from Fastlane::Action

action_name, author, deprecated_notes, lane_context, method_missing, other_action, return_type, return_value, sample_return_value, shell_out_should_use_bundle_exec?, step_text

Class Method Details

.authorsObject



106
107
108
# File 'fastlane/lib/fastlane/actions/ensure_no_debug_code.rb', line 106

def self.authors
  ["KrauseFx"]
end

.available_optionsObject



64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# File 'fastlane/lib/fastlane/actions/ensure_no_debug_code.rb', line 64

def self.available_options
  [
    FastlaneCore::ConfigItem.new(key: :text,
                                 env_name: "FL_ENSURE_NO_DEBUG_CODE_TEXT",
                                 description: "The text that must not be in the code base"),
    FastlaneCore::ConfigItem.new(key: :path,
                                 env_name: "FL_ENSURE_NO_DEBUG_CODE_PATH",
                                 description: "The directory containing all the source files",
                                 default_value: ".",
                                 verify_block: proc do |value|
                                   UI.user_error!("Couldn't find the folder at '#{File.absolute_path(value)}'") unless File.directory?(value)
                                 end),
    FastlaneCore::ConfigItem.new(key: :extension,
                                 env_name: "FL_ENSURE_NO_DEBUG_CODE_EXTENSION",
                                 description: "The extension that should be searched for",
                                 optional: true,
                                 verify_block: proc do |value|
                                   value.delete!('.') if value.include?(".")
                                 end),
    FastlaneCore::ConfigItem.new(key: :extensions,
                                 env_name: "FL_ENSURE_NO_DEBUG_CODE_EXTENSIONS",
                                 description: "An array of file extensions that should be searched for",
                                 optional: true,
                                 is_string: false),
    FastlaneCore::ConfigItem.new(key: :exclude,
                                 env_name: "FL_ENSURE_NO_DEBUG_CODE_EXCLUDE",
                                 description: "Exclude a certain pattern from the search",
                                 optional: true,
                                 is_string: true),
    FastlaneCore::ConfigItem.new(key: :exclude_dirs,
                                 env_name: "FL_ENSURE_NO_DEBUG_CODE_EXCLUDE_DIRS",
                                 description: "An array of dirs that should not be included in the search",
                                 optional: true,
                                 type: Array,
                                 is_string: false)
  ]
end

.categoryObject



126
127
128
# File 'fastlane/lib/fastlane/actions/ensure_no_debug_code.rb', line 126

def self.category
  :misc
end

.descriptionObject



53
54
55
# File 'fastlane/lib/fastlane/actions/ensure_no_debug_code.rb', line 53

def self.description
  "Ensures the given text is nowhere in the code base"
end

.detailsObject



57
58
59
60
61
62
# File 'fastlane/lib/fastlane/actions/ensure_no_debug_code.rb', line 57

def self.details
  [
    "You don't want any debug code to slip into production.",
    "This can be used to check if there is any debug code still in your codebase or if you have things like `// TO DO` or similar."
  ].join("\n")
end

.example_codeObject



110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
# File 'fastlane/lib/fastlane/actions/ensure_no_debug_code.rb', line 110

def self.example_code
  [
    'ensure_no_debug_code(text: "// TODO")',
    'ensure_no_debug_code(text: "Log.v",
                    extension: "java")',
    'ensure_no_debug_code(text: "NSLog",
                         path: "./lib",
                    extension: "m")',
    'ensure_no_debug_code(text: "(^#define DEBUG|NSLog)",
                         path: "./lib",
                    extension: "m")',
    'ensure_no_debug_code(text: "<<<<<<",
                   extensions: ["m", "swift", "java"])'
  ]
end

.is_supported?(platform) ⇒ Boolean

Returns:



130
131
132
# File 'fastlane/lib/fastlane/actions/ensure_no_debug_code.rb', line 130

def self.is_supported?(platform)
  true
end

.outputObject



102
103
104
# File 'fastlane/lib/fastlane/actions/ensure_no_debug_code.rb', line 102

def self.output
  []
end

.run(params) ⇒ Object



4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# File 'fastlane/lib/fastlane/actions/ensure_no_debug_code.rb', line 4

def self.run(params)
  command = "grep -RE '#{params[:text]}' '#{File.absolute_path(params[:path])}'"

  extensions = []
  extensions << params[:extension] unless params[:extension].nil?

  if params[:extensions]
    params[:extensions].each do |extension|
      extension.delete!('.') if extension.include?(".")
      extensions << extension
    end
  end

  if extensions.count > 1
    command << " --include=\\*.{#{extensions.join(',')}}"
  elsif extensions.count > 0
    command << " --include=\\*.#{extensions.join(',')}"
  end

  command << " --exclude #{params[:exclude]}" if params[:exclude]

  if params[:exclude_dirs]
    params[:exclude_dirs].each do |dir|
      command << " --exclude-dir #{dir.shellescape}"
    end
  end

  return command if Helper.test?

  UI.important(command)
  results = `#{command}` # we don't use `sh` as the return code of grep is wrong for some reason

  # Example Output
  #   ./fastlane.gemspec:  spec.add_development_dependency 'my_word'
  #   ./Gemfile.lock:    my_word (0.10.1)

  found = []
  results.split("\n").each do |current_raw|
    found << current_raw.strip
  end

  UI.user_error!("Found debug code '#{params[:text]}': \n\n#{found.join("\n")}") if found.count > 0
  UI.message("No debug code found in code base 🐛")
end