lazylead 0.6.1 → 0.8.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (113) hide show
  1. checksums.yaml +4 -4
  2. data/.circleci/config.yml +7 -2
  3. data/.docker/Dockerfile +17 -6
  4. data/.docs/duedate_expired.md +1 -1
  5. data/.rubocop.yml +119 -3
  6. data/.simplecov +1 -1
  7. data/Gemfile +1 -1
  8. data/Guardfile +2 -2
  9. data/Rakefile +7 -4
  10. data/bin/lazylead +4 -2
  11. data/lazylead.gemspec +33 -29
  12. data/lib/lazylead.rb +2 -2
  13. data/lib/lazylead/allocated.rb +1 -1
  14. data/lib/lazylead/cc.rb +22 -21
  15. data/lib/lazylead/cli/app.rb +3 -3
  16. data/lib/lazylead/confluence.rb +10 -3
  17. data/lib/lazylead/email.rb +1 -21
  18. data/lib/lazylead/exchange.rb +17 -29
  19. data/lib/lazylead/home.rb +1 -1
  20. data/lib/lazylead/log.rb +1 -1
  21. data/lib/lazylead/model.rb +25 -17
  22. data/lib/lazylead/opts.rb +68 -3
  23. data/lib/lazylead/postman.rb +14 -19
  24. data/lib/lazylead/requires.rb +38 -0
  25. data/lib/lazylead/salt.rb +2 -1
  26. data/lib/lazylead/schedule.rb +1 -1
  27. data/lib/lazylead/smtp.rb +1 -1
  28. data/lib/lazylead/system/empty.rb +1 -1
  29. data/lib/lazylead/system/fake.rb +1 -1
  30. data/lib/lazylead/system/jira.rb +28 -20
  31. data/lib/lazylead/system/synced.rb +1 -1
  32. data/lib/lazylead/task/accuracy/accuracy.rb +23 -30
  33. data/lib/lazylead/task/accuracy/affected_build.rb +1 -1
  34. data/lib/lazylead/task/accuracy/attachment.rb +3 -7
  35. data/lib/lazylead/task/accuracy/environment.rb +1 -1
  36. data/lib/lazylead/task/accuracy/logs.rb +10 -5
  37. data/lib/lazylead/task/accuracy/onlyll.rb +147 -0
  38. data/lib/lazylead/task/accuracy/records.rb +2 -2
  39. data/lib/lazylead/task/accuracy/requirement.rb +1 -1
  40. data/lib/lazylead/task/accuracy/servers.rb +17 -8
  41. data/lib/lazylead/task/accuracy/stacktrace.rb +2 -2
  42. data/lib/lazylead/task/accuracy/testcase.rb +3 -3
  43. data/lib/lazylead/task/accuracy/wiki.rb +1 -1
  44. data/lib/lazylead/task/{alert.rb → alert/alert.rb} +6 -6
  45. data/lib/lazylead/task/alert/alertif.rb +75 -0
  46. data/lib/lazylead/task/alert/changed_to.rb +58 -0
  47. data/lib/lazylead/task/assignment.rb +1 -1
  48. data/lib/lazylead/task/confluence_ref.rb +1 -1
  49. data/lib/lazylead/task/echo.rb +1 -1
  50. data/lib/lazylead/task/fix_version.rb +5 -3
  51. data/lib/lazylead/task/loading.rb +94 -0
  52. data/lib/lazylead/task/missing_comment.rb +1 -1
  53. data/lib/lazylead/task/propagate_down.rb +4 -4
  54. data/lib/lazylead/task/savepoint.rb +1 -1
  55. data/lib/lazylead/task/svn/diff.rb +6 -14
  56. data/lib/lazylead/task/svn/grep.rb +41 -13
  57. data/lib/lazylead/task/svn/touch.rb +3 -5
  58. data/lib/lazylead/version.rb +2 -2
  59. data/lib/messages/accuracy.erb +1 -1
  60. data/lib/messages/alertif.erb +134 -0
  61. data/lib/messages/created_recently.erb +110 -0
  62. data/lib/messages/illegal_fixversion_change.erb +8 -2
  63. data/lib/messages/loading.erb +117 -0
  64. data/lib/messages/only_ll.erb +107 -0
  65. data/lib/messages/svn_diff_attachment.erb +18 -8
  66. data/lib/messages/svn_grep.erb +1 -1
  67. data/readme.md +3 -3
  68. data/test/lazylead/allocated_test.rb +1 -1
  69. data/test/lazylead/cc_test.rb +2 -1
  70. data/test/lazylead/cli/app_test.rb +2 -2
  71. data/test/lazylead/confluence_test.rb +1 -1
  72. data/test/lazylead/exchange_test.rb +1 -1
  73. data/test/lazylead/model_test.rb +11 -1
  74. data/test/lazylead/opts_test.rb +48 -1
  75. data/test/lazylead/postman_test.rb +9 -6
  76. data/test/lazylead/salt_test.rb +1 -1
  77. data/test/lazylead/smoke_test.rb +14 -1
  78. data/test/lazylead/smtp_test.rb +2 -5
  79. data/test/lazylead/system/jira_test.rb +10 -1
  80. data/test/lazylead/task/accuracy/accuracy_test.rb +1 -1
  81. data/test/lazylead/task/accuracy/affected_build_test.rb +1 -1
  82. data/test/lazylead/task/accuracy/attachment_test.rb +2 -2
  83. data/test/lazylead/task/accuracy/environment_test.rb +1 -1
  84. data/test/lazylead/task/accuracy/logs_test.rb +13 -1
  85. data/test/lazylead/task/accuracy/onlyll_test.rb +138 -0
  86. data/test/lazylead/task/accuracy/records_test.rb +1 -1
  87. data/test/lazylead/task/accuracy/score_test.rb +2 -2
  88. data/test/lazylead/task/accuracy/servers_test.rb +3 -3
  89. data/test/lazylead/task/accuracy/stacktrace_test.rb +1 -1
  90. data/test/lazylead/task/accuracy/testcase_test.rb +28 -1
  91. data/test/lazylead/task/accuracy/wiki_test.rb +1 -1
  92. data/test/lazylead/task/alert/alertif_test.rb +54 -0
  93. data/test/lazylead/task/{assignee_alert_test.rb → alert/assignee_alert_test.rb} +10 -10
  94. data/test/lazylead/task/alert/changed_to_test.rb +42 -0
  95. data/test/lazylead/task/assignment_test.rb +1 -1
  96. data/test/lazylead/task/confluence_ref_test.rb +1 -1
  97. data/test/lazylead/task/created_recently_test.rb +53 -0
  98. data/test/lazylead/task/duedate_test.rb +5 -12
  99. data/test/lazylead/task/echo_test.rb +1 -1
  100. data/test/lazylead/task/fix_version_test.rb +2 -1
  101. data/test/lazylead/task/loading_test.rb +54 -0
  102. data/test/lazylead/task/missing_comment_test.rb +1 -1
  103. data/test/lazylead/task/propagate_down_test.rb +5 -4
  104. data/test/lazylead/task/savepoint_test.rb +10 -7
  105. data/test/lazylead/task/svn/diff_test.rb +1 -1
  106. data/test/lazylead/task/svn/grep_test.rb +44 -2
  107. data/test/lazylead/task/svn/touch_test.rb +1 -1
  108. data/test/lazylead/version_test.rb +1 -1
  109. data/test/sqlite_test.rb +1 -1
  110. data/test/test.rb +8 -9
  111. data/upgrades/sqlite/001-install-main-lazylead-tables.sql +1 -1
  112. data/upgrades/sqlite/999.testdata.sql +3 -2
  113. metadata +133 -58
@@ -2,7 +2,7 @@
2
2
 
3
3
  # The MIT License
4
4
  #
5
- # Copyright (c) 2019-2020 Yurii Dubinka
5
+ # Copyright (c) 2019-2021 Yurii Dubinka
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"),
@@ -0,0 +1,54 @@
1
+ # frozen_string_literal: true
2
+
3
+ # The MIT License
4
+ #
5
+ # Copyright (c) 2019-2021 Yurii Dubinka
6
+ #
7
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ # of this software and associated documentation files (the "Software"),
9
+ # to deal in the Software without restriction, including without limitation
10
+ # the rights to use, copy, modify, merge, publish, distribute, sublicense,
11
+ # and/or sell copies of the Software, and to permit persons to whom
12
+ # the Software is furnished to do so, subject to the following conditions:
13
+ #
14
+ # The above copyright notice and this permission notice shall be included
15
+ # in all copies or substantial portions of the Software.
16
+ #
17
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
20
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
22
+ # ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
23
+ # OR OTHER DEALINGS IN THE SOFTWARE.
24
+
25
+ require_relative "../../../test"
26
+ require_relative "../../../../lib/lazylead/log"
27
+ require_relative "../../../../lib/lazylead/opts"
28
+ require_relative "../../../../lib/lazylead/smtp"
29
+ require_relative "../../../../lib/lazylead/postman"
30
+ require_relative "../../../../lib/lazylead/system/jira"
31
+ require_relative "../../../../lib/lazylead/task/alert/alertif"
32
+ require_relative "../../../../lib/lazylead/task/alert/changed_to"
33
+
34
+ module Lazylead
35
+ class AlertIfTest < Lazylead::Test
36
+ test "last change to Done" do
37
+ Smtp.new.enable
38
+ Lazylead::Task::AlertIf.new.run(
39
+ NoAuthJira.new("https://jira.spring.io"),
40
+ Postman.new,
41
+ Opts.new(
42
+ "to_status" => "Done",
43
+ "to" => "lead@company.com",
44
+ "from" => "ll@company.com",
45
+ "rules" => "Lazylead::ToStatus",
46
+ "jql" => "key=XD-3064",
47
+ "subject" => "[LL] alert if",
48
+ "template" => "lib/messages/alertif.erb"
49
+ )
50
+ )
51
+ assert_email "[LL] alert if", %w[XD-3064 Critical Done Glenn Risberg HdfsMongoDB]
52
+ end
53
+ end
54
+ end
@@ -2,7 +2,7 @@
2
2
 
3
3
  # The MIT License
4
4
  #
5
- # Copyright (c) 2019-2020 Yurii Dubinka
5
+ # Copyright (c) 2019-2021 Yurii Dubinka
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"),
@@ -22,15 +22,15 @@
22
22
  # ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
23
23
  # OR OTHER DEALINGS IN THE SOFTWARE.
24
24
 
25
- require_relative "../../test"
26
- require_relative "../../../lib/lazylead/log"
27
- require_relative "../../../lib/lazylead/smtp"
28
- require_relative "../../../lib/lazylead/postman"
29
- require_relative "../../../lib/lazylead/schedule"
30
- require_relative "../../../lib/lazylead/model"
31
- require_relative "../../../lib/lazylead/cli/app"
32
- require_relative "../../../lib/lazylead/system/jira"
33
- require_relative "../../../lib/lazylead/task/alert"
25
+ require_relative "../../../test"
26
+ require_relative "../../../../lib/lazylead/log"
27
+ require_relative "../../../../lib/lazylead/smtp"
28
+ require_relative "../../../../lib/lazylead/postman"
29
+ require_relative "../../../../lib/lazylead/schedule"
30
+ require_relative "../../../../lib/lazylead/model"
31
+ require_relative "../../../../lib/lazylead/cli/app"
32
+ require_relative "../../../../lib/lazylead/system/jira"
33
+ require_relative "../../../../lib/lazylead/task/alert/alert"
34
34
 
35
35
  module Lazylead
36
36
  class AssigneeAlertTest < Lazylead::Test
@@ -0,0 +1,42 @@
1
+ # frozen_string_literal: true
2
+
3
+ # The MIT License
4
+ #
5
+ # Copyright (c) 2019-2021 Yurii Dubinka
6
+ #
7
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ # of this software and associated documentation files (the "Software"),
9
+ # to deal in the Software without restriction, including without limitation
10
+ # the rights to use, copy, modify, merge, publish, distribute, sublicense,
11
+ # and/or sell copies of the Software, and to permit persons to whom
12
+ # the Software is furnished to do so, subject to the following conditions:
13
+ #
14
+ # The above copyright notice and this permission notice shall be included
15
+ # in all copies or substantial portions of the Software.
16
+ #
17
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
20
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
22
+ # ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
23
+ # OR OTHER DEALINGS IN THE SOFTWARE.
24
+
25
+ require_relative "../../../test"
26
+ require_relative "../../../../lib/lazylead/log"
27
+ require_relative "../../../../lib/lazylead/opts"
28
+ require_relative "../../../../lib/lazylead/system/jira"
29
+ require_relative "../../../../lib/lazylead/task/alert/changed_to"
30
+
31
+ module Lazylead
32
+ class ToStatusTest < Lazylead::Test
33
+ test "last change to Done" do
34
+ assert Lazylead::ToStatus.new.passed(
35
+ NoAuthJira.new("https://jira.spring.io")
36
+ .issues("key=XD-3064", Opts.new.jira_defaults.merge(expand: "changelog"))
37
+ .first,
38
+ Opts.new("to_status" => "Done")
39
+ )
40
+ end
41
+ end
42
+ end
@@ -2,7 +2,7 @@
2
2
 
3
3
  # The MIT License
4
4
  #
5
- # Copyright (c) 2019-2020 Yurii Dubinka
5
+ # Copyright (c) 2019-2021 Yurii Dubinka
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"),
@@ -2,7 +2,7 @@
2
2
 
3
3
  # The MIT License
4
4
  #
5
- # Copyright (c) 2019-2020 Yurii Dubinka
5
+ # Copyright (c) 2019-2021 Yurii Dubinka
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"),
@@ -0,0 +1,53 @@
1
+ # frozen_string_literal: true
2
+
3
+ # The MIT License
4
+ #
5
+ # Copyright (c) 2019-2021 Yurii Dubinka
6
+ #
7
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ # of this software and associated documentation files (the "Software"),
9
+ # to deal in the Software without restriction, including without limitation
10
+ # the rights to use, copy, modify, merge, publish, distribute, sublicense,
11
+ # and/or sell copies of the Software, and to permit persons to whom
12
+ # the Software is furnished to do so, subject to the following conditions:
13
+ #
14
+ # The above copyright notice and this permission notice shall be included
15
+ # in all copies or substantial portions of the Software.
16
+ #
17
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
20
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
22
+ # ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
23
+ # OR OTHER DEALINGS IN THE SOFTWARE.
24
+
25
+ require_relative "../../test"
26
+ require_relative "../../../lib/lazylead/log"
27
+ require_relative "../../../lib/lazylead/smtp"
28
+ require_relative "../../../lib/lazylead/postman"
29
+ require_relative "../../../lib/lazylead/schedule"
30
+ require_relative "../../../lib/lazylead/model"
31
+ require_relative "../../../lib/lazylead/cli/app"
32
+ require_relative "../../../lib/lazylead/system/jira"
33
+ require_relative "../../../lib/lazylead/task/alert/alert"
34
+
35
+ module Lazylead
36
+ class CreatedRecentlyTest < Lazylead::Test
37
+ test "issues were fetched" do
38
+ Smtp.new.enable
39
+ Task::Alert.new.run(
40
+ NoAuthJira.new("https://jira.spring.io"),
41
+ Postman.new,
42
+ Opts.new(
43
+ "from" => "fake@email.com",
44
+ "to" => "my@team.com",
45
+ "sql" => "labels=xd and key in (XD-3766, SGF-726)",
46
+ "subject" => "[CR] 20min ago!",
47
+ "template" => "lib/messages/created_recently.erb"
48
+ )
49
+ )
50
+ assert_email "[CR] 20min ago!", %w[XD-3766 SGF-726]
51
+ end
52
+ end
53
+ end
@@ -2,7 +2,7 @@
2
2
 
3
3
  # The MIT License
4
4
  #
5
- # Copyright (c) 2019-2020 Yurii Dubinka
5
+ # Copyright (c) 2019-2021 Yurii Dubinka
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"),
@@ -30,7 +30,7 @@ require_relative "../../../lib/lazylead/schedule"
30
30
  require_relative "../../../lib/lazylead/model"
31
31
  require_relative "../../../lib/lazylead/cli/app"
32
32
  require_relative "../../../lib/lazylead/system/jira"
33
- require_relative "../../../lib/lazylead/task/alert"
33
+ require_relative "../../../lib/lazylead/task/alert/alert"
34
34
 
35
35
  module Lazylead
36
36
  class DuedateTest < Lazylead::Test
@@ -48,10 +48,7 @@ module Lazylead
48
48
  "template" => "lib/messages/due_date_expired.erb"
49
49
  )
50
50
  )
51
- assert_equal 2,
52
- Mail::TestMailer.deliveries
53
- .filter { |m| m.subject.eql? "[DD] PDTN!" }
54
- .length
51
+ assert_equal(2, Mail::TestMailer.deliveries.count { |m| m.subject.eql? "[DD] PDTN!" })
55
52
  end
56
53
 
57
54
  test "configuration properties merged successfully" do
@@ -123,8 +120,7 @@ module Lazylead
123
120
  )
124
121
  assert_equal %w[another.boss@example.com mom@home.com],
125
122
  Mail::TestMailer.deliveries
126
- .filter { |m| m.subject.eql? "CC: Watching" }
127
- .first.cc
123
+ .find { |m| m.subject.eql? "CC: Watching" }.cc
128
124
  end
129
125
 
130
126
  test "reporter got alert about his/her tickets with expired DD" do
@@ -139,10 +135,7 @@ module Lazylead
139
135
  "template" => "lib/messages/due_date_expired.erb"
140
136
  )
141
137
  )
142
- assert_equal 2,
143
- Mail::TestMailer.deliveries
144
- .filter { |m| m.subject.eql? "DD Expired!" }
145
- .length
138
+ assert_equal(2, Mail::TestMailer.deliveries.count { |m| m.subject.eql? "DD Expired!" })
146
139
  end
147
140
  end
148
141
  end
@@ -2,7 +2,7 @@
2
2
 
3
3
  # The MIT License
4
4
  #
5
- # Copyright (c) 2019-2020 Yurii Dubinka
5
+ # Copyright (c) 2019-2021 Yurii Dubinka
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"),
@@ -2,7 +2,7 @@
2
2
 
3
3
  # The MIT License
4
4
  #
5
- # Copyright (c) 2019-2020 Yurii Dubinka
5
+ # Copyright (c) 2019-2021 Yurii Dubinka
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"),
@@ -42,6 +42,7 @@ module Lazylead
42
42
  "from" => "ll@company.com",
43
43
  "jql" => "key in ('DATAJDBC-480') and fixVersion is not empty",
44
44
  "allowed" => "tom,mike,bob",
45
+ "fields" => "description,reporter,priority,summary,created,fixVersions",
45
46
  "subject" => "FixVersion: How dare you?",
46
47
  "template" => "lib/messages/illegal_fixversion_change.erb"
47
48
  )
@@ -0,0 +1,54 @@
1
+ # frozen_string_literal: true
2
+
3
+ # The MIT License
4
+ #
5
+ # Copyright (c) 2019-2021 Yurii Dubinka
6
+ #
7
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ # of this software and associated documentation files (the "Software"),
9
+ # to deal in the Software without restriction, including without limitation
10
+ # the rights to use, copy, modify, merge, publish, distribute, sublicense,
11
+ # and/or sell copies of the Software, and to permit persons to whom
12
+ # the Software is furnished to do so, subject to the following conditions:
13
+ #
14
+ # The above copyright notice and this permission notice shall be included
15
+ # in all copies or substantial portions of the Software.
16
+ #
17
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
20
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
22
+ # ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
23
+ # OR OTHER DEALINGS IN THE SOFTWARE.
24
+
25
+ require "mail"
26
+
27
+ require_relative "../../test"
28
+ require_relative "../../../lib/lazylead/smtp"
29
+ require_relative "../../../lib/lazylead/opts"
30
+ require_relative "../../../lib/lazylead/postman"
31
+ require_relative "../../../lib/lazylead/task/loading"
32
+
33
+ module Lazylead
34
+ class LoadingTest < Lazylead::Test
35
+ test "notify about team loading" do
36
+ Lazylead::Smtp.new.enable
37
+ Task::Loading.new.run(
38
+ NoAuthJira.new("https://jira.spring.io"),
39
+ Postman.new,
40
+ Opts.new(
41
+ "to" => "lead@company.com",
42
+ "from" => "ll@company.com",
43
+ "jql" => "key=STS-3599",
44
+ "team" => "mclaren:Tom McLaren,milesparker:Mi Pa",
45
+ "user_link" => "https://user.com?id=",
46
+ "fields" => "description,assignee,component,priority,summary,duedate",
47
+ "subject" => "[LL] Team loading",
48
+ "template" => "lib/messages/loading.erb"
49
+ )
50
+ )
51
+ assert_email "[LL] Team loading", %w[mclaren Tom McLaren 0]
52
+ end
53
+ end
54
+ end
@@ -2,7 +2,7 @@
2
2
 
3
3
  # The MIT License
4
4
  #
5
- # Copyright (c) 2019-2020 Yurii Dubinka
5
+ # Copyright (c) 2019-2021 Yurii Dubinka
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"),
@@ -2,7 +2,7 @@
2
2
 
3
3
  # The MIT License
4
4
  #
5
- # Copyright (c) 2019-2020 Yurii Dubinka
5
+ # Copyright (c) 2019-2021 Yurii Dubinka
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"),
@@ -28,6 +28,7 @@ require_relative "../../../lib/lazylead/task/propagate_down"
28
28
 
29
29
  module Lazylead
30
30
  class PropagateDownTest < Lazylead::Test
31
+ # rubocop:disable Naming/VariableNumber
31
32
  test "propagate fields from parent ticket to sub-tasks" do
32
33
  parent = OpenStruct.new(
33
34
  id: 1,
@@ -38,7 +39,7 @@ module Lazylead
38
39
  customfield_102: "Yesterday"
39
40
  }.stringify_keys
40
41
  )
41
- Child = Struct.new(:id, :key, :fields, :comment) do
42
+ child = Struct.new(:id, :key, :fields, :comment) do
42
43
  def save(diff)
43
44
  fields.merge! diff[:fields]
44
45
  end
@@ -54,8 +55,7 @@ module Lazylead
54
55
  def save!(body)
55
56
  self[:comment] = body[:body]
56
57
  end
57
- end
58
- child = Child.new(
58
+ end.new(
59
59
  2, "PRJ-2",
60
60
  {
61
61
  subtasks: [],
@@ -84,5 +84,6 @@ module Lazylead
84
84
  |customfield_102|Yesterday|],
85
85
  child.comment
86
86
  end
87
+ # rubocop:enable Naming/VariableNumber
87
88
  end
88
89
  end
@@ -2,7 +2,7 @@
2
2
 
3
3
  # The MIT License
4
4
  #
5
- # Copyright (c) 2019-2020 Yurii Dubinka
5
+ # Copyright (c) 2019-2021 Yurii Dubinka
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"),
@@ -24,6 +24,7 @@
24
24
 
25
25
  require_relative "../../test"
26
26
  require_relative "../../../lib/lazylead/smtp"
27
+ require_relative "../../../lib/lazylead/opts"
27
28
  require_relative "../../../lib/lazylead/postman"
28
29
  require_relative "../../../lib/lazylead/task/savepoint"
29
30
 
@@ -36,15 +37,17 @@ module Lazylead
36
37
  Task::Savepoint.new.run(
37
38
  [],
38
39
  Postman.new,
39
- "from" => "fake@email.com",
40
- "subject" => "[LL] Configuration backup",
41
- "template" => "lib/messages/savepoint.erb",
42
- "to" => "big.boss@example.com"
40
+ Opts.new(
41
+ "from" => "fake@email.com",
42
+ "subject" => "[LL] Configuration backup",
43
+ "template" => "lib/messages/savepoint.erb",
44
+ "to" => "big.boss@example.com"
45
+ )
43
46
  )
44
47
  assert_equal 'text/markdown; filename="readme.md"',
45
48
  Mail::TestMailer.deliveries
46
- .filter { |m| m.subject.eql? "[LL] Configuration backup" }
47
- .first.attachments.first.header.fields[0]
49
+ .find { |m| m.subject.eql? "[LL] Configuration backup" }
50
+ .attachments.first.header.fields[0]
48
51
  .unparsed_value
49
52
  end
50
53
  end
@@ -2,7 +2,7 @@
2
2
 
3
3
  # The MIT License
4
4
  #
5
- # Copyright (c) 2019-2020 Yurii Dubinka
5
+ # Copyright (c) 2019-2021 Yurii Dubinka
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the "Software"),