fbe 0.0.85 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.0pdd.yml +2 -19
- data/.github/workflows/actionlint.yml +4 -20
- data/.github/workflows/codecov.yml +8 -22
- data/.github/workflows/copyrights.yml +4 -19
- data/.github/workflows/markdown-lint.yml +4 -19
- data/.github/workflows/pdd.yml +4 -19
- data/.github/workflows/rake.yml +6 -22
- data/.github/workflows/reuse.yml +19 -0
- data/.github/workflows/xcop.yml +4 -19
- data/.github/workflows/yamllint.yml +4 -19
- data/.gitignore +7 -5
- data/.rubocop.yml +8 -20
- data/.rultor.yml +4 -20
- data/.simplecov +2 -19
- data/.yamllint.yml +2 -19
- data/Gemfile +11 -27
- data/Gemfile.lock +79 -57
- data/LICENSE.txt +1 -1
- data/LICENSES/MIT.txt +21 -0
- data/REUSE.toml +31 -0
- data/Rakefile +3 -28
- data/assets/bylaws/dud-was-punished.liquid +1 -1
- data/fbe.gemspec +3 -20
- data/lib/fbe/award.rb +29 -30
- data/lib/fbe/bylaws.rb +2 -21
- data/lib/fbe/conclude.rb +4 -23
- data/lib/fbe/copy.rb +2 -21
- data/lib/fbe/enter.rb +2 -21
- data/lib/fbe/fb.rb +4 -23
- data/lib/fbe/github_graph.rb +3 -22
- data/lib/fbe/if_absent.rb +3 -22
- data/lib/fbe/issue.rb +2 -21
- data/lib/fbe/iterate.rb +3 -22
- data/lib/fbe/just_one.rb +3 -22
- data/lib/fbe/middleware/formatter.rb +3 -22
- data/lib/fbe/middleware/quota.rb +3 -22
- data/lib/fbe/middleware.rb +3 -22
- data/lib/fbe/octo.rb +6 -25
- data/lib/fbe/overwrite.rb +3 -22
- data/lib/fbe/pmp.rb +2 -21
- data/lib/fbe/regularly.rb +2 -21
- data/lib/fbe/repeatedly.rb +2 -21
- data/lib/fbe/sec.rb +2 -21
- data/lib/fbe/unmask_repos.rb +2 -21
- data/lib/fbe/who.rb +2 -21
- data/lib/fbe.rb +4 -21
- data/rules/basic.fe +1 -1
- data/test/fbe/middleware/test_formatter.rb +12 -29
- data/test/fbe/middleware/test_quota.rb +2 -22
- data/test/fbe/test_award.rb +7 -27
- data/test/fbe/test_bylaws.rb +6 -26
- data/test/fbe/test_conclude.rb +3 -23
- data/test/fbe/test_copy.rb +4 -24
- data/test/fbe/test_enter.rb +3 -23
- data/test/fbe/test_fb.rb +8 -28
- data/test/fbe/test_github_graph.rb +18 -38
- data/test/fbe/test_if_absent.rb +7 -28
- data/test/fbe/test_issue.rb +3 -23
- data/test/fbe/test_iterate.rb +3 -23
- data/test/fbe/test_just_one.rb +4 -24
- data/test/fbe/test_octo.rb +12 -32
- data/test/fbe/test_overwrite.rb +4 -24
- data/test/fbe/test_pmp.rb +4 -24
- data/test/fbe/test_regularly.rb +3 -23
- data/test/fbe/test_repeatedly.rb +3 -23
- data/test/fbe/test_sec.rb +3 -23
- data/test/fbe/test_unmask_repos.rb +7 -27
- data/test/fbe/test_who.rb +3 -23
- data/test/test__helper.rb +2 -19
- data/test/test_fbe.rb +4 -22
- metadata +10 -10
data/test/fbe/test_issue.rb
CHANGED
@@ -1,35 +1,15 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# Copyright (c) 2024 Zerocracy
|
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"), to deal
|
9
|
-
# in the Software without restriction, including without limitation the rights
|
10
|
-
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
11
|
-
# copies of the Software, and to permit persons to whom the Software is
|
12
|
-
# furnished to do so, subject to the following conditions:
|
13
|
-
#
|
14
|
-
# The above copyright notice and this permission notice shall be included in all
|
15
|
-
# 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 NONINFRINGEMENT. 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, ARISING FROM,
|
22
|
-
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
23
|
-
# SOFTWARE.
|
3
|
+
# SPDX-FileCopyrightText: Copyright (c) 2024-2025 Zerocracy
|
4
|
+
# SPDX-License-Identifier: MIT
|
24
5
|
|
25
|
-
require 'minitest/autorun'
|
26
6
|
require 'loog'
|
27
7
|
require_relative '../test__helper'
|
28
8
|
require_relative '../../lib/fbe/issue'
|
29
9
|
|
30
10
|
# Test.
|
31
11
|
# Author:: Yegor Bugayenko (yegor256@gmail.com)
|
32
|
-
# Copyright:: Copyright (c) 2024 Zerocracy
|
12
|
+
# Copyright:: Copyright (c) 2024-2025 Zerocracy
|
33
13
|
# License:: MIT
|
34
14
|
class TestIssue < Minitest::Test
|
35
15
|
def test_simple
|
data/test/fbe/test_iterate.rb
CHANGED
@@ -1,28 +1,8 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# Copyright (c) 2024 Zerocracy
|
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"), to deal
|
9
|
-
# in the Software without restriction, including without limitation the rights
|
10
|
-
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
11
|
-
# copies of the Software, and to permit persons to whom the Software is
|
12
|
-
# furnished to do so, subject to the following conditions:
|
13
|
-
#
|
14
|
-
# The above copyright notice and this permission notice shall be included in all
|
15
|
-
# 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 NONINFRINGEMENT. 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, ARISING FROM,
|
22
|
-
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
23
|
-
# SOFTWARE.
|
3
|
+
# SPDX-FileCopyrightText: Copyright (c) 2024-2025 Zerocracy
|
4
|
+
# SPDX-License-Identifier: MIT
|
24
5
|
|
25
|
-
require 'minitest/autorun'
|
26
6
|
require 'loog'
|
27
7
|
require 'factbase'
|
28
8
|
require 'judges/options'
|
@@ -31,7 +11,7 @@ require_relative '../../lib/fbe/iterate'
|
|
31
11
|
|
32
12
|
# Test.
|
33
13
|
# Author:: Yegor Bugayenko (yegor256@gmail.com)
|
34
|
-
# Copyright:: Copyright (c) 2024 Zerocracy
|
14
|
+
# Copyright:: Copyright (c) 2024-2025 Zerocracy
|
35
15
|
# License:: MIT
|
36
16
|
class TestIterate < Minitest::Test
|
37
17
|
def test_simple
|
data/test/fbe/test_just_one.rb
CHANGED
@@ -1,35 +1,15 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# Copyright (c) 2024 Zerocracy
|
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"), to deal
|
9
|
-
# in the Software without restriction, including without limitation the rights
|
10
|
-
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
11
|
-
# copies of the Software, and to permit persons to whom the Software is
|
12
|
-
# furnished to do so, subject to the following conditions:
|
13
|
-
#
|
14
|
-
# The above copyright notice and this permission notice shall be included in all
|
15
|
-
# 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 NONINFRINGEMENT. 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, ARISING FROM,
|
22
|
-
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
23
|
-
# SOFTWARE.
|
3
|
+
# SPDX-FileCopyrightText: Copyright (c) 2024-2025 Zerocracy
|
4
|
+
# SPDX-License-Identifier: MIT
|
24
5
|
|
25
|
-
require 'minitest/autorun'
|
26
6
|
require 'factbase'
|
27
7
|
require_relative '../test__helper'
|
28
8
|
require_relative '../../lib/fbe/just_one'
|
29
9
|
|
30
10
|
# Test.
|
31
11
|
# Author:: Yegor Bugayenko (yegor256@gmail.com)
|
32
|
-
# Copyright:: Copyright (c) 2024 Zerocracy
|
12
|
+
# Copyright:: Copyright (c) 2024-2025 Zerocracy
|
33
13
|
# License:: MIT
|
34
14
|
class TestJustOne < Minitest::Test
|
35
15
|
def test_ignores
|
@@ -39,7 +19,7 @@ class TestJustOne < Minitest::Test
|
|
39
19
|
Fbe.just_one(fb:) do |f|
|
40
20
|
f.foo = 'hello dude'
|
41
21
|
end
|
42
|
-
|
22
|
+
refute_nil(n)
|
43
23
|
end
|
44
24
|
|
45
25
|
def test_injects
|
data/test/fbe/test_octo.rb
CHANGED
@@ -1,28 +1,8 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
#
|
4
|
-
#
|
5
|
-
|
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"), to deal
|
9
|
-
# in the Software without restriction, including without limitation the rights
|
10
|
-
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
11
|
-
# copies of the Software, and to permit persons to whom the Software is
|
12
|
-
# furnished to do so, subject to the following conditions:
|
13
|
-
#
|
14
|
-
# The above copyright notice and this permission notice shall be included in all
|
15
|
-
# 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 NONINFRINGEMENT. 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, ARISING FROM,
|
22
|
-
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
23
|
-
# SOFTWARE.
|
24
|
-
|
25
|
-
require 'minitest/autorun'
|
3
|
+
# SPDX-FileCopyrightText: Copyright (c) 2024-2025 Zerocracy
|
4
|
+
# SPDX-License-Identifier: MIT
|
5
|
+
|
26
6
|
require 'judges/options'
|
27
7
|
require 'webmock/minitest'
|
28
8
|
require 'loog'
|
@@ -31,16 +11,16 @@ require_relative '../../lib/fbe/octo'
|
|
31
11
|
|
32
12
|
# Test.
|
33
13
|
# Author:: Yegor Bugayenko (yegor256@gmail.com)
|
34
|
-
# Copyright:: Copyright (c) 2024 Zerocracy
|
14
|
+
# Copyright:: Copyright (c) 2024-2025 Zerocracy
|
35
15
|
# License:: MIT
|
36
16
|
class TestOcto < Minitest::Test
|
37
17
|
def test_simple_use
|
38
18
|
global = {}
|
39
19
|
options = Judges::Options.new({ 'testing' => true })
|
40
20
|
o = Fbe.octo(loog: Loog::NULL, global:, options:)
|
41
|
-
|
42
|
-
|
43
|
-
|
21
|
+
refute(o.off_quota)
|
22
|
+
refute_nil(o.pull_request('foo/foo', 42))
|
23
|
+
refute_nil(o.commit_pulls('foo/foo', 'sha'))
|
44
24
|
end
|
45
25
|
|
46
26
|
def test_post_comment
|
@@ -82,7 +62,7 @@ class TestOcto < Minitest::Test
|
|
82
62
|
stub_request(:get, 'https://api.github.com/rate_limit')
|
83
63
|
.to_return(status: 200, body: '{}', headers: { 'X-RateLimit-Remaining' => '1000' })
|
84
64
|
o = Fbe.octo(loog: Loog::NULL, global: {}, options: Judges::Options.new)
|
85
|
-
|
65
|
+
refute(o.off_quota)
|
86
66
|
end
|
87
67
|
|
88
68
|
def test_retrying
|
@@ -110,12 +90,12 @@ class TestOcto < Minitest::Test
|
|
110
90
|
end
|
111
91
|
|
112
92
|
def test_with_broken_token
|
113
|
-
skip
|
93
|
+
skip("it's a live test, run it manually if you need it")
|
114
94
|
WebMock.enable_net_connect!
|
115
95
|
global = {}
|
116
96
|
options = Judges::Options.new({ 'github_token' => 'incorrect-value' })
|
117
97
|
o = Fbe.octo(loog: Loog::NULL, global:, options:)
|
118
|
-
assert_raises { o.repository('zerocracy/fbe') }
|
98
|
+
assert_raises(StandardError) { o.repository('zerocracy/fbe') }
|
119
99
|
end
|
120
100
|
|
121
101
|
def test_workflow_run_usage
|
@@ -125,7 +105,7 @@ class TestOcto < Minitest::Test
|
|
125
105
|
end
|
126
106
|
|
127
107
|
def test_commit_pulls
|
128
|
-
skip
|
108
|
+
skip("it's a live test, run it manually if you need it")
|
129
109
|
WebMock.enable_net_connect!
|
130
110
|
o = Fbe.octo(loog: Loog::NULL, global: {}, options: Judges::Options.new)
|
131
111
|
assert_equal(1, o.commit_pulls('zerocracy/fbe', '0b7d0699bd744b62c0731064c2adaad0c58e1416').size)
|
@@ -165,7 +145,7 @@ class TestOcto < Minitest::Test
|
|
165
145
|
)
|
166
146
|
.times(1)
|
167
147
|
o.user(user)
|
168
|
-
|
148
|
+
refute(o.off_quota) if n > 100
|
169
149
|
limit -= 1
|
170
150
|
end
|
171
151
|
assert_in_delta(pause, Time.now - start_time, 5)
|
data/test/fbe/test_overwrite.rb
CHANGED
@@ -1,35 +1,15 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# Copyright (c) 2024 Zerocracy
|
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"), to deal
|
9
|
-
# in the Software without restriction, including without limitation the rights
|
10
|
-
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
11
|
-
# copies of the Software, and to permit persons to whom the Software is
|
12
|
-
# furnished to do so, subject to the following conditions:
|
13
|
-
#
|
14
|
-
# The above copyright notice and this permission notice shall be included in all
|
15
|
-
# 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 NONINFRINGEMENT. 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, ARISING FROM,
|
22
|
-
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
23
|
-
# SOFTWARE.
|
3
|
+
# SPDX-FileCopyrightText: Copyright (c) 2024-2025 Zerocracy
|
4
|
+
# SPDX-License-Identifier: MIT
|
24
5
|
|
25
|
-
require 'minitest/autorun'
|
26
6
|
require 'factbase'
|
27
7
|
require_relative '../test__helper'
|
28
8
|
require_relative '../../lib/fbe/overwrite'
|
29
9
|
|
30
10
|
# Test.
|
31
11
|
# Author:: Yegor Bugayenko (yegor256@gmail.com)
|
32
|
-
# Copyright:: Copyright (c) 2024 Zerocracy
|
12
|
+
# Copyright:: Copyright (c) 2024-2025 Zerocracy
|
33
13
|
# License:: MIT
|
34
14
|
class TestOverwrite < Minitest::Test
|
35
15
|
def test_simple_overwrite
|
@@ -76,7 +56,7 @@ class TestOverwrite < Minitest::Test
|
|
76
56
|
def test_without_id
|
77
57
|
fb = Factbase.new
|
78
58
|
f = fb.insert
|
79
|
-
assert_raises do
|
59
|
+
assert_raises(StandardError) do
|
80
60
|
Fbe.overwrite(f, 'foo', 42, fb:)
|
81
61
|
end
|
82
62
|
end
|
data/test/fbe/test_pmp.rb
CHANGED
@@ -1,28 +1,8 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# Copyright (c) 2024 Zerocracy
|
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"), to deal
|
9
|
-
# in the Software without restriction, including without limitation the rights
|
10
|
-
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
11
|
-
# copies of the Software, and to permit persons to whom the Software is
|
12
|
-
# furnished to do so, subject to the following conditions:
|
13
|
-
#
|
14
|
-
# The above copyright notice and this permission notice shall be included in all
|
15
|
-
# 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 NONINFRINGEMENT. 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, ARISING FROM,
|
22
|
-
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
23
|
-
# SOFTWARE.
|
3
|
+
# SPDX-FileCopyrightText: Copyright (c) 2024-2025 Zerocracy
|
4
|
+
# SPDX-License-Identifier: MIT
|
24
5
|
|
25
|
-
require 'minitest/autorun'
|
26
6
|
require 'judges/options'
|
27
7
|
require 'loog'
|
28
8
|
require 'factbase'
|
@@ -31,7 +11,7 @@ require_relative '../../lib/fbe/pmp'
|
|
31
11
|
|
32
12
|
# Test.
|
33
13
|
# Author:: Yegor Bugayenko (yegor256@gmail.com)
|
34
|
-
# Copyright:: Copyright (c) 2024 Zerocracy
|
14
|
+
# Copyright:: Copyright (c) 2024-2025 Zerocracy
|
35
15
|
# License:: MIT
|
36
16
|
class TestPmp < Minitest::Test
|
37
17
|
def test_defaults
|
@@ -49,6 +29,6 @@ class TestPmp < Minitest::Test
|
|
49
29
|
def test_fail_on_wrong_area
|
50
30
|
$global = {}
|
51
31
|
$loog = Loog::NULL
|
52
|
-
assert_raises { Fbe.pmp(Factbase.new, loog: Loog::NULL).something }
|
32
|
+
assert_raises(StandardError) { Fbe.pmp(Factbase.new, loog: Loog::NULL).something }
|
53
33
|
end
|
54
34
|
end
|
data/test/fbe/test_regularly.rb
CHANGED
@@ -1,28 +1,8 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# Copyright (c) 2024 Zerocracy
|
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"), to deal
|
9
|
-
# in the Software without restriction, including without limitation the rights
|
10
|
-
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
11
|
-
# copies of the Software, and to permit persons to whom the Software is
|
12
|
-
# furnished to do so, subject to the following conditions:
|
13
|
-
#
|
14
|
-
# The above copyright notice and this permission notice shall be included in all
|
15
|
-
# 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 NONINFRINGEMENT. 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, ARISING FROM,
|
22
|
-
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
23
|
-
# SOFTWARE.
|
3
|
+
# SPDX-FileCopyrightText: Copyright (c) 2024-2025 Zerocracy
|
4
|
+
# SPDX-License-Identifier: MIT
|
24
5
|
|
25
|
-
require 'minitest/autorun'
|
26
6
|
require 'loog'
|
27
7
|
require 'factbase'
|
28
8
|
require_relative '../test__helper'
|
@@ -30,7 +10,7 @@ require_relative '../../lib/fbe/regularly'
|
|
30
10
|
|
31
11
|
# Test.
|
32
12
|
# Author:: Yegor Bugayenko (yegor256@gmail.com)
|
33
|
-
# Copyright:: Copyright (c) 2024 Zerocracy
|
13
|
+
# Copyright:: Copyright (c) 2024-2025 Zerocracy
|
34
14
|
# License:: MIT
|
35
15
|
class TestRegularly < Minitest::Test
|
36
16
|
def test_simple
|
data/test/fbe/test_repeatedly.rb
CHANGED
@@ -1,28 +1,8 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# Copyright (c) 2024 Zerocracy
|
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"), to deal
|
9
|
-
# in the Software without restriction, including without limitation the rights
|
10
|
-
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
11
|
-
# copies of the Software, and to permit persons to whom the Software is
|
12
|
-
# furnished to do so, subject to the following conditions:
|
13
|
-
#
|
14
|
-
# The above copyright notice and this permission notice shall be included in all
|
15
|
-
# 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 NONINFRINGEMENT. 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, ARISING FROM,
|
22
|
-
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
23
|
-
# SOFTWARE.
|
3
|
+
# SPDX-FileCopyrightText: Copyright (c) 2024-2025 Zerocracy
|
4
|
+
# SPDX-License-Identifier: MIT
|
24
5
|
|
25
|
-
require 'minitest/autorun'
|
26
6
|
require 'loog'
|
27
7
|
require 'factbase'
|
28
8
|
require 'judges/options'
|
@@ -31,7 +11,7 @@ require_relative '../../lib/fbe/repeatedly'
|
|
31
11
|
|
32
12
|
# Test.
|
33
13
|
# Author:: Yegor Bugayenko (yegor256@gmail.com)
|
34
|
-
# Copyright:: Copyright (c) 2024 Zerocracy
|
14
|
+
# Copyright:: Copyright (c) 2024-2025 Zerocracy
|
35
15
|
# License:: MIT
|
36
16
|
class TestRepeatedly < Minitest::Test
|
37
17
|
def test_simple
|
data/test/fbe/test_sec.rb
CHANGED
@@ -1,34 +1,14 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# Copyright (c) 2024 Zerocracy
|
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"), to deal
|
9
|
-
# in the Software without restriction, including without limitation the rights
|
10
|
-
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
11
|
-
# copies of the Software, and to permit persons to whom the Software is
|
12
|
-
# furnished to do so, subject to the following conditions:
|
13
|
-
#
|
14
|
-
# The above copyright notice and this permission notice shall be included in all
|
15
|
-
# 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 NONINFRINGEMENT. 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, ARISING FROM,
|
22
|
-
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
23
|
-
# SOFTWARE.
|
3
|
+
# SPDX-FileCopyrightText: Copyright (c) 2024-2025 Zerocracy
|
4
|
+
# SPDX-License-Identifier: MIT
|
24
5
|
|
25
|
-
require 'minitest/autorun'
|
26
6
|
require_relative '../test__helper'
|
27
7
|
require_relative '../../lib/fbe/sec'
|
28
8
|
|
29
9
|
# Test.
|
30
10
|
# Author:: Yegor Bugayenko (yegor256@gmail.com)
|
31
|
-
# Copyright:: Copyright (c) 2024 Zerocracy
|
11
|
+
# Copyright:: Copyright (c) 2024-2025 Zerocracy
|
32
12
|
# License:: MIT
|
33
13
|
class TestSec < Minitest::Test
|
34
14
|
def test_simple
|
@@ -1,28 +1,8 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# Copyright (c) 2024 Zerocracy
|
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"), to deal
|
9
|
-
# in the Software without restriction, including without limitation the rights
|
10
|
-
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
11
|
-
# copies of the Software, and to permit persons to whom the Software is
|
12
|
-
# furnished to do so, subject to the following conditions:
|
13
|
-
#
|
14
|
-
# The above copyright notice and this permission notice shall be included in all
|
15
|
-
# 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 NONINFRINGEMENT. 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, ARISING FROM,
|
22
|
-
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
23
|
-
# SOFTWARE.
|
3
|
+
# SPDX-FileCopyrightText: Copyright (c) 2024-2025 Zerocracy
|
4
|
+
# SPDX-License-Identifier: MIT
|
24
5
|
|
25
|
-
require 'minitest/autorun'
|
26
6
|
require 'judges/options'
|
27
7
|
require 'loog'
|
28
8
|
require_relative '../test__helper'
|
@@ -30,7 +10,7 @@ require_relative '../../lib/fbe/unmask_repos'
|
|
30
10
|
|
31
11
|
# Test.
|
32
12
|
# Author:: Yegor Bugayenko (yegor256@gmail.com)
|
33
|
-
# Copyright:: Copyright (c) 2024 Zerocracy
|
13
|
+
# Copyright:: Copyright (c) 2024-2025 Zerocracy
|
34
14
|
# License:: MIT
|
35
15
|
class TestUnmaskRepos < Minitest::Test
|
36
16
|
def test_simple_use
|
@@ -41,7 +21,7 @@ class TestUnmaskRepos < Minitest::Test
|
|
41
21
|
}
|
42
22
|
)
|
43
23
|
list = Fbe.unmask_repos(options: opts, global: {}, loog: Loog::NULL)
|
44
|
-
|
24
|
+
assert_predicate(list.size, :positive?)
|
45
25
|
refute_includes(list, 'zerocracy/datum')
|
46
26
|
end
|
47
27
|
|
@@ -53,9 +33,9 @@ class TestUnmaskRepos < Minitest::Test
|
|
53
33
|
}
|
54
34
|
)
|
55
35
|
list = Fbe.unmask_repos(options: opts, global: {}, loog: Loog::NULL)
|
56
|
-
|
57
|
-
|
58
|
-
|
36
|
+
assert_predicate(list.size, :positive?)
|
37
|
+
assert_includes(list, 'zerocracy/pages-action')
|
38
|
+
refute_includes(list, 'zerocracy/judges-action')
|
59
39
|
refute_includes(list, 'zerocracy/datum')
|
60
40
|
end
|
61
41
|
end
|
data/test/fbe/test_who.rb
CHANGED
@@ -1,35 +1,15 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
#
|
4
|
-
#
|
5
|
-
# Copyright (c) 2024 Zerocracy
|
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"), to deal
|
9
|
-
# in the Software without restriction, including without limitation the rights
|
10
|
-
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
11
|
-
# copies of the Software, and to permit persons to whom the Software is
|
12
|
-
# furnished to do so, subject to the following conditions:
|
13
|
-
#
|
14
|
-
# The above copyright notice and this permission notice shall be included in all
|
15
|
-
# 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 NONINFRINGEMENT. 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, ARISING FROM,
|
22
|
-
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
23
|
-
# SOFTWARE.
|
3
|
+
# SPDX-FileCopyrightText: Copyright (c) 2024-2025 Zerocracy
|
4
|
+
# SPDX-License-Identifier: MIT
|
24
5
|
|
25
|
-
require 'minitest/autorun'
|
26
6
|
require 'loog'
|
27
7
|
require_relative '../test__helper'
|
28
8
|
require_relative '../../lib/fbe/who'
|
29
9
|
|
30
10
|
# Test.
|
31
11
|
# Author:: Yegor Bugayenko (yegor256@gmail.com)
|
32
|
-
# Copyright:: Copyright (c) 2024 Zerocracy
|
12
|
+
# Copyright:: Copyright (c) 2024-2025 Zerocracy
|
33
13
|
# License:: MIT
|
34
14
|
class TestWho < Minitest::Test
|
35
15
|
def test_simple
|
data/test/test__helper.rb
CHANGED
@@ -1,24 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
# Copyright (c) 2024 Zerocracy
|
4
|
-
#
|
5
|
-
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
-
# of this software and associated documentation files (the 'Software'), to deal
|
7
|
-
# in the Software without restriction, including without limitation the rights
|
8
|
-
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
-
# copies of the Software, and to permit persons to whom the Software is
|
10
|
-
# furnished to do so, subject to the following conditions:
|
11
|
-
#
|
12
|
-
# The above copyright notice and this permission notice shall be included in all
|
13
|
-
# copies or substantial portions of the Software.
|
14
|
-
#
|
15
|
-
# THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
-
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
-
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFINGEMENT. IN NO EVENT SHALL THE
|
18
|
-
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
-
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
-
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
-
# SOFTWARE.
|
3
|
+
# SPDX-FileCopyrightText: Copyright (c) 2024-2025 Zerocracy
|
4
|
+
# SPDX-License-Identifier: MIT
|
22
5
|
|
23
6
|
$stdout.sync = true
|
24
7
|
|
data/test/test_fbe.rb
CHANGED
@@ -1,35 +1,17 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
# Copyright (c) 2024 Zerocracy
|
4
|
-
#
|
5
|
-
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
-
# of this software and associated documentation files (the 'Software'), to deal
|
7
|
-
# in the Software without restriction, including without limitation the rights
|
8
|
-
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
-
# copies of the Software, and to permit persons to whom the Software is
|
10
|
-
# furnished to do so, subject to the following conditions:
|
11
|
-
#
|
12
|
-
# The above copyright notice and this permission notice shall be included in all
|
13
|
-
# copies or substantial portions of the Software.
|
14
|
-
#
|
15
|
-
# THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
-
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
-
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFINGEMENT. IN NO EVENT SHALL THE
|
18
|
-
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
-
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
-
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
-
# SOFTWARE.
|
3
|
+
# SPDX-FileCopyrightText: Copyright (c) 2024-2025 Zerocracy
|
4
|
+
# SPDX-License-Identifier: MIT
|
22
5
|
|
23
|
-
require 'minitest/autorun'
|
24
6
|
require_relative 'test__helper'
|
25
7
|
require_relative '../lib/fbe'
|
26
8
|
|
27
9
|
# Main module test.
|
28
10
|
# Author:: Yegor Bugayenko (yegor256@gmail.com)
|
29
|
-
# Copyright:: Copyright (c) 2024 Zerocracy
|
11
|
+
# Copyright:: Copyright (c) 2024-2025 Zerocracy
|
30
12
|
# License:: MIT
|
31
13
|
class TestFbe < Minitest::Test
|
32
14
|
def test_simple
|
33
|
-
|
15
|
+
refute_nil(Fbe::VERSION)
|
34
16
|
end
|
35
17
|
end
|