Class: RubyIndexer::IndexTest

Inherits:
TestCase
  • Object
show all
Defined in:
lib/ruby_indexer/test/index_test.rb

Instance Method Summary collapse

Methods inherited from TestCase

#setup

Instance Method Details

#test_accessing_with_colon_colon_prefixObject



74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# File 'lib/ruby_indexer/test/index_test.rb', line 74

def test_accessing_with_colon_colon_prefix
  @index.index_single(IndexablePath.new(nil, "/fake/path/foo.rb"), <<~RUBY)
    class Bar; end

    module Foo
      class Bar
      end

      class Baz
        class Something
        end
      end
    end
  RUBY

  entries = @index["::Foo::Baz::Something"]
  refute_empty(entries)
  assert_equal("Foo::Baz::Something", entries.first.name)
end

#test_deleting_all_entries_for_a_classObject



26
27
28
29
30
31
32
33
34
35
36
37
38
# File 'lib/ruby_indexer/test/index_test.rb', line 26

def test_deleting_all_entries_for_a_class
  @index.index_single(IndexablePath.new(nil, "/fake/path/foo.rb"), <<~RUBY)
    class Foo
    end
  RUBY

  entries = @index["Foo"]
  assert_equal(1, entries.length)

  @index.delete(IndexablePath.new(nil, "/fake/path/foo.rb"))
  entries = @index["Foo"]
  assert_nil(entries)
end

#test_deleting_one_entry_for_a_classObject



8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# File 'lib/ruby_indexer/test/index_test.rb', line 8

def test_deleting_one_entry_for_a_class
  @index.index_single(IndexablePath.new(nil, "/fake/path/foo.rb"), <<~RUBY)
    class Foo
    end
  RUBY
  @index.index_single(IndexablePath.new(nil, "/fake/path/other_foo.rb"), <<~RUBY)
    class Foo
    end
  RUBY

  entries = @index["Foo"]
  assert_equal(2, entries.length)

  @index.delete(IndexablePath.new(nil, "/fake/path/other_foo.rb"))
  entries = @index["Foo"]
  assert_equal(1, entries.length)
end

#test_fuzzy_searchObject



94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
# File 'lib/ruby_indexer/test/index_test.rb', line 94

def test_fuzzy_search
  @index.index_single(IndexablePath.new(nil, "/fake/path/foo.rb"), <<~RUBY)
    class Bar; end

    module Foo
      class Bar
      end

      class Baz
        class Something
        end
      end
    end
  RUBY

  result = @index.fuzzy_search("Bar")
  assert_equal(1, result.length)
  assert_equal(@index["Bar"].first, result.first)

  result = @index.fuzzy_search("foobarsomeking")
  assert_equal(5, result.length)
  assert_equal(["Foo::Baz::Something", "Foo::Bar", "Foo::Baz", "Foo", "Bar"], result.map(&:name))

  result = @index.fuzzy_search("FooBaz")
  assert_equal(4, result.length)
  assert_equal(["Foo::Baz", "Foo::Bar", "Foo", "Foo::Baz::Something"], result.map(&:name))
end

#test_index_resolveObject



40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# File 'lib/ruby_indexer/test/index_test.rb', line 40

def test_index_resolve
  @index.index_single(IndexablePath.new(nil, "/fake/path/foo.rb"), <<~RUBY)
    class Bar; end

    module Foo
      class Bar
      end

      class Baz
        class Something
        end
      end
    end
  RUBY

  entries = @index.resolve("Something", ["Foo", "Baz"])
  refute_empty(entries)
  assert_equal("Foo::Baz::Something", entries.first.name)

  entries = @index.resolve("Bar", ["Foo"])
  refute_empty(entries)
  assert_equal("Foo::Bar", entries.first.name)

  entries = @index.resolve("Bar", ["Foo", "Baz"])
  refute_empty(entries)
  assert_equal("Foo::Bar", entries.first.name)

  entries = @index.resolve("Foo::Bar", ["Foo", "Baz"])
  refute_empty(entries)
  assert_equal("Foo::Bar", entries.first.name)

  assert_nil(@index.resolve("DoesNotExist", ["Foo"]))
end

#test_index_single_ignores_directoriesObject



122
123
124
125
126
127
# File 'lib/ruby_indexer/test/index_test.rb', line 122

def test_index_single_ignores_directories
  FileUtils.mkdir("lib/this_is_a_dir.rb")
  @index.index_single(IndexablePath.new(nil, "lib/this_is_a_dir.rb"))
ensure
  FileUtils.rm_r("lib/this_is_a_dir.rb")
end

#test_resolve_normalizes_top_level_namesObject



162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
# File 'lib/ruby_indexer/test/index_test.rb', line 162

def test_resolve_normalizes_top_level_names
  @index.index_single(IndexablePath.new("/fake", "/fake/path/foo.rb"), <<~RUBY)
    class Bar; end

    module Foo
      class Bar; end
    end
  RUBY

  entries = @index.resolve("::Foo::Bar", [])
  refute_nil(entries)

  assert_equal("Foo::Bar", entries.first.name)

  entries = @index.resolve("::Bar", ["Foo"])
  refute_nil(entries)

  assert_equal("Bar", entries.first.name)
end

#test_searching_for_entries_based_on_prefixObject



142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
# File 'lib/ruby_indexer/test/index_test.rb', line 142

def test_searching_for_entries_based_on_prefix
  @index.index_single(IndexablePath.new("/fake", "/fake/path/foo.rb"), <<~RUBY)
    class Foo::Bar
    end
  RUBY
  @index.index_single(IndexablePath.new("/fake", "/fake/path/other_foo.rb"), <<~RUBY)
    class Foo::Bar
    end

    class Foo::Baz
    end
  RUBY

  results = @index.prefix_search("Foo", []).map { |entries| entries.map(&:name) }
  assert_equal([["Foo::Bar", "Foo::Bar"], ["Foo::Baz"]], results)

  results = @index.prefix_search("Ba", ["Foo"]).map { |entries| entries.map(&:name) }
  assert_equal([["Foo::Bar", "Foo::Bar"], ["Foo::Baz"]], results)
end

#test_searching_for_require_pathsObject



129
130
131
132
133
134
135
136
137
138
139
140
# File 'lib/ruby_indexer/test/index_test.rb', line 129

def test_searching_for_require_paths
  @index.index_single(IndexablePath.new("/fake", "/fake/path/foo.rb"), <<~RUBY)
    class Foo
    end
  RUBY
  @index.index_single(IndexablePath.new("/fake", "/fake/path/other_foo.rb"), <<~RUBY)
    class Foo
    end
  RUBY

  assert_equal(["path/foo", "path/other_foo"], @index.search_require_paths("path").map(&:require_path))
end