Skip to content
代码片段 群组 项目
提交 94d76421 编辑于 作者: Dylan Griffith's avatar Dylan Griffith 提交者: Dmitry Gruzd
浏览文件

More elasticsearch pattern test coverage

This covers some common paradigms that were not working before and were
pointed out in https://gitlab.com/groups/gitlab-org/-/epics/3621
上级 20f06110
No related branches found
No related tags found
无相关合并请求
...@@ -629,6 +629,14 @@ def search_for(term) ...@@ -629,6 +629,14 @@ def search_for(term)
us-east-2 us-east-2
bye bye
MyJavaClass::javaLangStaticMethodCall
$my_perl_object->perlMethodCall
LanguageWithSingleColon:someSingleColonMethodCall
WouldHappenInManyLanguages,tokenAfterCommaWithNoSpace
ParenthesesBetweenTokens)tokenAfterParentheses
a.b.c=missing_token_around_equals
FILE FILE
end end
let(:file_name) { 'elastic_specialchars_test.md' } let(:file_name) { 'elastic_specialchars_test.md' }
...@@ -671,6 +679,30 @@ def search_for(term) ...@@ -671,6 +679,30 @@ def search_for(term)
it 'finds file paths for various languages' do it 'finds file paths for various languages' do
expect(search_for('"differeñt-lønguage.txt"')).to include(file_name) expect(search_for('"differeñt-lønguage.txt"')).to include(file_name)
end end
it 'finds java style static method call after ::' do
expect(search_for('javaLangStaticMethodCall')).to include(file_name)
end
it 'finds perl object method call' do
expect(search_for('perlMethodCall')).to include(file_name)
end
it 'finds tokens after a colon' do
expect(search_for('someSingleColonMethodCall')).to include(file_name)
end
it 'finds tokens after a comma with no space' do
expect(search_for('tokenAfterCommaWithNoSpace')).to include(file_name)
end
it 'finds a token directly after parentheses' do
expect(search_for('tokenAfterParentheses')).to include(file_name)
end
it 'finds a token after = without a space' do
expect(search_for('missing_token_around_equals')).to include(file_name)
end
end end
end end
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册