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/lib/fbe.rb
CHANGED
@@ -1,31 +1,14 @@
|
|
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
|
# The main and only module of this gem.
|
24
7
|
#
|
25
8
|
# Author:: Yegor Bugayenko (yegor256@gmail.com)
|
26
|
-
# Copyright:: Copyright (c) 2024 Zerocracy
|
9
|
+
# Copyright:: Copyright (c) 2024-2025 Zerocracy
|
27
10
|
# License:: MIT
|
28
11
|
module Fbe
|
29
12
|
# Current version of the gem (changed by +.rultor.yml+ on every release)
|
30
|
-
VERSION = '0.0
|
13
|
+
VERSION = '0.1.0'
|
31
14
|
end
|
data/rules/basic.fe
CHANGED
@@ -1,37 +1,18 @@
|
|
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
6
|
require 'faraday'
|
26
7
|
require 'loog'
|
27
|
-
|
8
|
+
require_relative '../../test__helper'
|
28
9
|
require_relative '../../../lib/fbe'
|
29
10
|
require_relative '../../../lib/fbe/middleware'
|
30
11
|
require_relative '../../../lib/fbe/middleware/formatter'
|
31
12
|
|
32
13
|
# Test.
|
33
14
|
# Author:: Yegor Bugayenko (yegor256@gmail.com)
|
34
|
-
# Copyright:: Copyright (c) 2024 Zerocracy
|
15
|
+
# Copyright:: Copyright (c) 2024-2025 Zerocracy
|
35
16
|
# License:: MIT
|
36
17
|
class LoggingFormatterTest < Minitest::Test
|
37
18
|
def test_success_response
|
@@ -50,12 +31,14 @@ class LoggingFormatterTest < Minitest::Test
|
|
50
31
|
log_it(status: 401) do |loog|
|
51
32
|
str = loog.to_s
|
52
33
|
refute_empty(str)
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
34
|
+
[
|
35
|
+
%r{http://example.com},
|
36
|
+
/Authorization:/,
|
37
|
+
%r{HTTP/1.1 401},
|
38
|
+
/x-github-api-version-selected: "2022-11-28"/,
|
39
|
+
/hello, world!/,
|
40
|
+
/request body/
|
41
|
+
].each { |ptn| assert_match(ptn, str) }
|
59
42
|
end
|
60
43
|
end
|
61
44
|
|
@@ -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 'faraday'
|
27
7
|
require 'logger'
|
28
8
|
require_relative '../../../lib/fbe/middleware'
|
data/test/fbe/test_award.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_relative '../test__helper'
|
28
8
|
require_relative '../../lib/fbe/award'
|
@@ -63,8 +43,8 @@ class TestAward < Minitest::Test
|
|
63
43
|
judge: '', global: {}, loog: Loog::NULL, options: nil
|
64
44
|
)
|
65
45
|
b = a.bill(hours: 10)
|
66
|
-
|
67
|
-
|
46
|
+
assert_operator(b.points, :<=, 100)
|
47
|
+
assert_operator(b.points, :>=, 5)
|
68
48
|
assert_equal(40, b.points)
|
69
49
|
g = b.greeting
|
70
50
|
[
|
@@ -72,12 +52,12 @@ class TestAward < Minitest::Test
|
|
72
52
|
'+10 for resolving the bug in 10',
|
73
53
|
'bug in 10 (<36) hours',
|
74
54
|
'+30 as a basis'
|
75
|
-
].each { |t|
|
55
|
+
].each { |t| assert_includes(g, t, g) }
|
76
56
|
md = a.bylaw.markdown
|
77
57
|
[
|
78
58
|
'First, assume that _hours_ is hours',
|
79
59
|
', and award _b₂_'
|
80
|
-
].each { |t|
|
60
|
+
].each { |t| assert_includes(md, t, md) }
|
81
61
|
end
|
82
62
|
|
83
63
|
def test_some_terms
|
@@ -130,7 +110,7 @@ class TestAward < Minitest::Test
|
|
130
110
|
'Just add **17** when necessary'
|
131
111
|
}.each do |q, t|
|
132
112
|
md = Fbe::Award.new(q).bylaw.markdown
|
133
|
-
|
113
|
+
assert_includes(md, t, md)
|
134
114
|
end
|
135
115
|
end
|
136
116
|
|
data/test/fbe/test_bylaws.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_relative '../test__helper'
|
28
8
|
require_relative '../../lib/fbe/award'
|
@@ -35,8 +15,8 @@ require_relative '../../lib/fbe/bylaws'
|
|
35
15
|
class TestBylaws < Minitest::Test
|
36
16
|
def test_simple
|
37
17
|
laws = Fbe.bylaws
|
38
|
-
|
39
|
-
|
18
|
+
assert_operator(laws.size, :>, 1)
|
19
|
+
refute_nil(laws['published-release-was-rewarded'])
|
40
20
|
end
|
41
21
|
|
42
22
|
def test_check_all_bills
|
@@ -102,10 +82,10 @@ class TestBylaws < Minitest::Test
|
|
102
82
|
}
|
103
83
|
awards.each do |title, pairs|
|
104
84
|
formula = Fbe.bylaws[title]
|
105
|
-
|
85
|
+
refute_nil(formula, title)
|
106
86
|
a = Fbe::Award.new(formula)
|
107
87
|
help = [
|
108
|
-
" '#{title.
|
88
|
+
" '#{title.tr('_', '-')}' => {\n ",
|
109
89
|
pairs.map do |args, _|
|
110
90
|
[
|
111
91
|
'{',
|
data/test/fbe/test_conclude.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 'factbase/syntax'
|
@@ -33,7 +13,7 @@ require_relative '../../lib/fbe/fb'
|
|
33
13
|
|
34
14
|
# Test.
|
35
15
|
# Author:: Yegor Bugayenko (yegor256@gmail.com)
|
36
|
-
# Copyright:: Copyright (c) 2024 Zerocracy
|
16
|
+
# Copyright:: Copyright (c) 2024-2025 Zerocracy
|
37
17
|
# License:: MIT
|
38
18
|
class TestConclude < Minitest::Test
|
39
19
|
def test_with_defaults
|
data/test/fbe/test_copy.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/copy'
|
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 TestCopy < Minitest::Test
|
35
15
|
def test_simple_copy
|
@@ -52,6 +32,6 @@ class TestCopy < Minitest::Test
|
|
52
32
|
f2 = fb.insert
|
53
33
|
f2._id = 2
|
54
34
|
Fbe.copy(f1, f2, except: ['foo'])
|
55
|
-
|
35
|
+
assert_nil(f2['foo'])
|
56
36
|
end
|
57
37
|
end
|
data/test/fbe/test_enter.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/enter'
|
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 TestEnter < Minitest::Test
|
35
15
|
def test_simple
|
data/test/fbe/test_fb.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 'factbase'
|
27
7
|
require 'loog'
|
28
8
|
require 'judges/options'
|
@@ -32,7 +12,7 @@ require_relative '../../lib/fbe/fb'
|
|
32
12
|
|
33
13
|
# Test.
|
34
14
|
# Author:: Yegor Bugayenko (yegor256@gmail.com)
|
35
|
-
# Copyright:: Copyright (c) 2024 Zerocracy
|
15
|
+
# Copyright:: Copyright (c) 2024-2025 Zerocracy
|
36
16
|
# License:: MIT
|
37
17
|
class TestFb < Minitest::Test
|
38
18
|
def test_simple
|
@@ -44,7 +24,7 @@ class TestFb < Minitest::Test
|
|
44
24
|
Fbe.fb.insert.bar = 2
|
45
25
|
assert_equal(1, Fbe.fb.query('(exists bar)').each.to_a.size)
|
46
26
|
stdout = $loog.to_s
|
47
|
-
|
27
|
+
assert_includes(stdout, 'Inserted new fact #1', stdout)
|
48
28
|
end
|
49
29
|
|
50
30
|
def test_increment_id_in_transaction
|
@@ -68,9 +48,9 @@ class TestFb < Minitest::Test
|
|
68
48
|
$loog = Loog::Buffer.new
|
69
49
|
Fbe.fb.insert
|
70
50
|
f = Fbe.fb.query('(always)').each.to_a.first
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
51
|
+
refute_nil(f._id)
|
52
|
+
refute_nil(f._time)
|
53
|
+
refute_nil(f._version)
|
54
|
+
refute_nil(f._job)
|
75
55
|
end
|
76
56
|
end
|
@@ -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 'webmock/minitest'
|
28
8
|
require 'loog'
|
@@ -30,7 +10,7 @@ require_relative '../../lib/fbe/github_graph'
|
|
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 TestGitHubGraph < Minitest::Test
|
36
16
|
def test_simple_use
|
@@ -41,7 +21,7 @@ class TestGitHubGraph < Minitest::Test
|
|
41
21
|
end
|
42
22
|
|
43
23
|
def test_simple_use_graph
|
44
|
-
skip
|
24
|
+
skip("it's a live test, run it manually if you need it")
|
45
25
|
WebMock.allow_net_connect!
|
46
26
|
client = Fbe::Graph.new(token: ENV.fetch('GITHUB_TOKEN', nil))
|
47
27
|
result = client.query(
|
@@ -53,7 +33,7 @@ class TestGitHubGraph < Minitest::Test
|
|
53
33
|
}
|
54
34
|
GRAPHQL
|
55
35
|
)
|
56
|
-
|
36
|
+
refute_empty(result.viewer.login)
|
57
37
|
end
|
58
38
|
|
59
39
|
def test_use_with_global_variables
|
@@ -65,15 +45,15 @@ class TestGitHubGraph < Minitest::Test
|
|
65
45
|
end
|
66
46
|
|
67
47
|
def test_with_broken_token
|
68
|
-
skip
|
48
|
+
skip("it's a live test, run it manually if you need it")
|
69
49
|
WebMock.allow_net_connect!
|
70
50
|
global = {}
|
71
51
|
options = Judges::Options.new({ 'github_token' => 'incorrect-value' })
|
72
|
-
assert_raises { Fbe.github_graph(loog: Loog::NULL, global:, options:) }
|
52
|
+
assert_raises(StandardError) { Fbe.github_graph(loog: Loog::NULL, global:, options:) }
|
73
53
|
end
|
74
54
|
|
75
55
|
def test_gets_resolved_conversations
|
76
|
-
skip
|
56
|
+
skip("it's a live test, run it manually if you need it")
|
77
57
|
WebMock.allow_net_connect!
|
78
58
|
global = {}
|
79
59
|
options = Judges::Options.new
|
@@ -81,18 +61,18 @@ class TestGitHubGraph < Minitest::Test
|
|
81
61
|
result = g.resolved_conversations('zerocracy', 'baza', 172)
|
82
62
|
assert_equal(1, result.count)
|
83
63
|
result = g.resolved_conversations('zerocracy', 'baza', 0)
|
84
|
-
|
85
|
-
|
64
|
+
assert_instance_of(Array, result)
|
65
|
+
assert_equal(0, result.count)
|
86
66
|
result = g.resolved_conversations('zerocracy1', 'baza', 0)
|
87
|
-
|
88
|
-
|
67
|
+
assert_instance_of(Array, result)
|
68
|
+
assert_equal(0, result.count)
|
89
69
|
result = g.resolved_conversations('zerocracy', 'baza1', 0)
|
90
|
-
|
91
|
-
|
70
|
+
assert_instance_of(Array, result)
|
71
|
+
assert_equal(0, result.count)
|
92
72
|
end
|
93
73
|
|
94
74
|
def test_does_not_count_unresolved_conversations
|
95
|
-
skip
|
75
|
+
skip("it's a live test, run it manually if you need it")
|
96
76
|
WebMock.allow_net_connect!
|
97
77
|
g = Fbe.github_graph(options: Judges::Options.new, loog: Loog::NULL, global: {})
|
98
78
|
result = g.resolved_conversations('zerocracy', 'judges-action', 296)
|
@@ -100,20 +80,20 @@ class TestGitHubGraph < Minitest::Test
|
|
100
80
|
end
|
101
81
|
|
102
82
|
def test_gets_total_commits_of_repo
|
103
|
-
skip
|
83
|
+
skip("it's a live test, run it manually if you need it")
|
104
84
|
WebMock.allow_net_connect!
|
105
85
|
global = {}
|
106
86
|
options = Judges::Options.new
|
107
87
|
g = Fbe.github_graph(options:, loog: Loog::NULL, global:)
|
108
88
|
result = g.total_commits('zerocracy', 'baza', 'master')
|
109
|
-
|
89
|
+
assert_predicate(result, :positive?)
|
110
90
|
end
|
111
91
|
|
112
92
|
def test_get_fake_empty_conversations
|
113
93
|
WebMock.disable_net_connect!
|
114
94
|
graph = Fbe.github_graph(options: Judges::Options.new('testing' => true), loog: Loog::NULL, global: {})
|
115
95
|
result = graph.resolved_conversations(nil, 'baza', 172)
|
116
|
-
|
96
|
+
assert_empty(result)
|
117
97
|
end
|
118
98
|
|
119
99
|
def test_get_fake_conversations
|
data/test/fbe/test_if_absent.rb
CHANGED
@@ -1,38 +1,17 @@
|
|
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 'tmpdir'
|
27
7
|
require 'factbase'
|
28
|
-
require 'factbase/looged'
|
29
8
|
require 'loog'
|
30
9
|
require_relative '../test__helper'
|
31
10
|
require_relative '../../lib/fbe/if_absent'
|
32
11
|
|
33
12
|
# Test.
|
34
13
|
# Author:: Yegor Bugayenko (yegor256@gmail.com)
|
35
|
-
# Copyright:: Copyright (c) 2024 Zerocracy
|
14
|
+
# Copyright:: Copyright (c) 2024-2025 Zerocracy
|
36
15
|
# License:: MIT
|
37
16
|
class TestIfAbsent < Minitest::Test
|
38
17
|
def test_ignores
|
@@ -42,7 +21,7 @@ class TestIfAbsent < Minitest::Test
|
|
42
21
|
Fbe.if_absent(fb:) do |f|
|
43
22
|
f.foo = 'hello dude'
|
44
23
|
end
|
45
|
-
|
24
|
+
assert_nil(n)
|
46
25
|
end
|
47
26
|
|
48
27
|
def test_ignores_with_time
|
@@ -53,7 +32,7 @@ class TestIfAbsent < Minitest::Test
|
|
53
32
|
Fbe.if_absent(fb:) do |f|
|
54
33
|
f.foo = t
|
55
34
|
end
|
56
|
-
|
35
|
+
assert_nil(n)
|
57
36
|
end
|
58
37
|
|
59
38
|
def test_injects
|
@@ -87,7 +66,7 @@ class TestIfAbsent < Minitest::Test
|
|
87
66
|
f.z = t
|
88
67
|
f.bar = 3.14
|
89
68
|
end
|
90
|
-
|
69
|
+
assert_nil(n)
|
91
70
|
end
|
92
71
|
|
93
72
|
def test_complex_injects
|
@@ -105,6 +84,6 @@ class TestIfAbsent < Minitest::Test
|
|
105
84
|
f.z = t + 1
|
106
85
|
f.bar = 3.15
|
107
86
|
end
|
108
|
-
|
87
|
+
refute_nil(n)
|
109
88
|
end
|
110
89
|
end
|