Skip to content

Commit 92f6e5b

Browse files
authoredMar 21, 2025··
Prefix framework tags with framework: (#3340)
1 parent 34d56c2 commit 92f6e5b

File tree

6 files changed

+85
-78
lines changed

6 files changed

+85
-78
lines changed
 

‎lib/ruby_lsp/listeners/spec_style.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def handle_describe(node)
7171
description,
7272
@uri,
7373
range_from_node(node),
74-
tags: [:minitest],
74+
framework: :minitest,
7575
)
7676
@response_builder.add(test_item)
7777
else
@@ -103,7 +103,7 @@ def add_to_parent_test_group(description, node)
103103
description,
104104
@uri,
105105
range_from_node(node),
106-
tags: [:minitest],
106+
framework: :minitest,
107107
)
108108
parent_test_group.add(test_item)
109109
end

‎lib/ruby_lsp/listeners/test_style.rb

+7-7
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def resolve_test_commands(items)
4040
unless children.any? && children.all? { |child| child[:tags].include?("test_group") }
4141
aggregated_tests[path][item[:label]] = { tags: tags, examples: [] }
4242
end
43-
elsif tags.include?("minitest") || tags.include?("test_unit")
43+
elsif tags.include?("framework:minitest") || tags.include?("framework:test_unit")
4444
class_name, method_name = item[:id].split("#")
4545
aggregated_tests[path][class_name][:examples] << method_name
4646
aggregated_tests[path][class_name][:tags].merge(tags)
@@ -55,7 +55,7 @@ def resolve_test_commands(items)
5555
# Separate groups into Minitest and Test Unit. You can have both frameworks in the same file, but you cannot
5656
# have a group belongs to both at the same time
5757
minitest_groups, test_unit_groups = groups_and_examples.partition do |_, info|
58-
info[:tags].include?("minitest")
58+
info[:tags].include?("framework:minitest")
5959
end
6060

6161
if minitest_groups.any?
@@ -141,7 +141,7 @@ def handle_test_unit_groups(file_path, groups_and_examples)
141141
def initialize(response_builder, global_state, dispatcher, uri)
142142
super
143143

144-
@framework_tag = T.let(:minitest, Symbol)
144+
@framework = T.let(:minitest, Symbol)
145145

146146
dispatcher.register(
147147
self,
@@ -156,15 +156,15 @@ def initialize(response_builder, global_state, dispatcher, uri)
156156
#: (Prism::ClassNode node) -> void
157157
def on_class_node_enter(node)
158158
with_test_ancestor_tracking(node) do |name, ancestors|
159-
@framework_tag = :test_unit if ancestors.include?("Test::Unit::TestCase")
159+
@framework = :test_unit if ancestors.include?("Test::Unit::TestCase")
160160

161-
if @framework_tag == :test_unit || non_declarative_minitest?(ancestors, name)
161+
if @framework == :test_unit || non_declarative_minitest?(ancestors, name)
162162
@response_builder.add(Requests::Support::TestItem.new(
163163
name,
164164
name,
165165
@uri,
166166
range_from_node(node),
167-
tags: [@framework_tag],
167+
framework: @framework,
168168
))
169169
end
170170
end
@@ -190,7 +190,7 @@ def on_def_node_enter(node)
190190
name,
191191
@uri,
192192
range_from_node(node),
193-
tags: [@framework_tag],
193+
framework: @framework,
194194
))
195195
end
196196

‎lib/ruby_lsp/requests/support/test_item.rb

+4-9
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ class TestItem
1313
#: String
1414
attr_reader :id, :label
1515

16-
#: (String id, String label, URI::Generic uri, Interface::Range range, Array[Symbol] tags) -> void
17-
def initialize(id, label, uri, range, tags: [])
16+
#: (String id, String label, URI::Generic uri, Interface::Range range, Symbol framework) -> void
17+
def initialize(id, label, uri, range, framework:)
1818
@id = id
1919
@label = label
2020
@uri = uri
2121
@range = range
22-
@tags = tags
23-
@children = T.let({}, T::Hash[String, TestItem])
22+
@tags = ["framework:#{framework}"] #: Array[String]
23+
@children = {} #: Hash[String, TestItem]
2424
end
2525

2626
#: (TestItem item) -> void
@@ -38,11 +38,6 @@ def children
3838
@children.values
3939
end
4040

41-
#: (Symbol) -> bool
42-
def tag?(tag)
43-
@tags.include?(tag)
44-
end
45-
4641
#: -> Hash[Symbol, untyped]
4742
def to_hash
4843
{

‎test/requests/discover_tests_test.rb

+3-3
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ def on_class_node_enter(node)
375375
class_name,
376376
@uri,
377377
range_from_node(node),
378-
tags: [:custom_addon],
378+
framework: :custom_addon,
379379
)
380380

381381
@response_builder.add(@current_class)
@@ -396,7 +396,7 @@ def on_call_node_enter(node)
396396
test_name,
397397
@uri,
398398
range_from_node(node),
399-
tags: [:custom_addon],
399+
framework: :custom_addon,
400400
))
401401
end
402402
end
@@ -418,7 +418,7 @@ def version
418418

419419
def assert_all_items_tagged_with(items, tag)
420420
items.each do |item|
421-
assert_includes(item[:tags], tag)
421+
assert_includes(item[:tags], "framework:#{tag}")
422422
children = item[:children]
423423
assert_all_items_tagged_with(children, tag) unless children.empty?
424424
end

‎test/requests/resolve_test_commands_test.rb

+51-51
Large diffs are not rendered by default.

‎test/response_builders/test_collection_test.rb

+18-6
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ def setup
1515

1616
def test_allows_building_hierarchy_of_tests
1717
builder = ResponseBuilders::TestCollection.new
18-
test_item = Requests::Support::TestItem.new("my-id", "Test label", @uri, @range)
19-
nested_item = Requests::Support::TestItem.new("nested-id", "Nested label", @uri, @range)
18+
test_item = Requests::Support::TestItem.new("my-id", "Test label", @uri, @range, framework: :minitest)
19+
nested_item = Requests::Support::TestItem.new("nested-id", "Nested label", @uri, @range, framework: :minitest)
2020

2121
builder.add(test_item)
2222
test_item.add(nested_item)
@@ -30,16 +30,28 @@ def test_allows_building_hierarchy_of_tests
3030

3131
def test_overrides_if_trying_to_add_item_with_same_id
3232
builder = ResponseBuilders::TestCollection.new
33-
test_item = Requests::Support::TestItem.new("my-id", "Test label", @uri, @range)
34-
nested_item = Requests::Support::TestItem.new("nested-id", "Nested label", @uri, @range)
33+
test_item = Requests::Support::TestItem.new("my-id", "Test label", @uri, @range, framework: :minitest)
34+
nested_item = Requests::Support::TestItem.new("nested-id", "Nested label", @uri, @range, framework: :minitest)
3535

3636
builder.add(test_item)
3737
test_item.add(nested_item)
3838

39-
builder.add(Requests::Support::TestItem.new("my-id", "Other title, but same ID", @uri, @range))
39+
builder.add(Requests::Support::TestItem.new(
40+
"my-id",
41+
"Other title, but same ID",
42+
@uri,
43+
@range,
44+
framework: :minitest,
45+
))
4046
assert_equal("Other title, but same ID", T.must(builder["my-id"]).label)
4147

42-
test_item.add(Requests::Support::TestItem.new("nested-id", "Other title, but same ID", @uri, @range))
48+
test_item.add(Requests::Support::TestItem.new(
49+
"nested-id",
50+
"Other title, but same ID",
51+
@uri,
52+
@range,
53+
framework: :minitest,
54+
))
4355
assert_equal("Other title, but same ID", T.must(test_item["nested-id"]).label)
4456
end
4557

0 commit comments

Comments
 (0)
Please sign in to comment.