提交 511046f9 编写于 作者: G Grzegorz Bizon

Make max tokens in expressions lexer a class-level attribute

上级 c6ea7a2a
......@@ -16,12 +16,13 @@ module Gitlab
MAX_TOKENS = 100
def initialize(statement)
def initialize(statement, max_tokens: MAX_TOKENS)
@scanner = StringScanner.new(statement)
@max_tokens = max_tokens
end
def tokens(max: MAX_TOKENS)
strong_memoize(:tokens) { tokenize(max) }
def tokens
strong_memoize(:tokens) { tokenize }
end
def lexemes
......@@ -30,10 +31,10 @@ module Gitlab
private
def tokenize(max_tokens)
def tokenize
tokens = []
max_tokens.times do
@max_tokens.times do
@scanner.skip(/\s+/) # ignore whitespace
return tokens if @scanner.eos?
......
......@@ -46,9 +46,9 @@ describe Gitlab::Ci::Pipeline::Expression::Lexer do
end
it 'limits statement to specified amount of tokens' do
lexer = described_class.new("$V1 $V2 $V3 $V4 $V5 $V6")
lexer = described_class.new("$V1 $V2 $V3 $V4", max_tokens: 3)
expect { lexer.tokens(max: 5) }
expect { lexer.tokens }
.to raise_error described_class::SyntaxError
end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册