From d0ff66c9abe9d6abbca12fd811e0c3cb69c1033a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9C=80=E8=90=8C=E5=B0=8F=E6=B1=90?= Date: Fri, 22 Nov 2019 23:26:32 +0800 Subject: =?UTF-8?q?=E6=95=B4=E7=90=86=E4=B8=80=E4=B8=8B=E7=9B=AE=E5=BD=95?= =?UTF-8?q?=E7=BB=93=E6=9E=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- script-beta/test/highlight/init.lua | 149 ++++++++++++++++++++++++++++++++++++ 1 file changed, 149 insertions(+) create mode 100644 script-beta/test/highlight/init.lua (limited to 'script-beta/test/highlight') diff --git a/script-beta/test/highlight/init.lua b/script-beta/test/highlight/init.lua new file mode 100644 index 00000000..0b916fd1 --- /dev/null +++ b/script-beta/test/highlight/init.lua @@ -0,0 +1,149 @@ +local core = require 'core.highlight' +local files = require 'files' + +local function catch_target(script) + local list = {} + local cur = 1 + while true do + local start, finish = script:find('<[!?].-[!?]>', cur) + if not start then + break + end + list[#list+1] = { + start = start + 2, + finish = finish - 2, + } + cur = finish + 1 + end + return list +end + +local function founded(targets, results) + if #targets ~= #results then + return false + end + for _, target in ipairs(targets) do + for _, result in ipairs(results) do + if target[1] == result[1] and target[2] == result[2] then + goto NEXT + end + end + do return false end + ::NEXT:: + end + return true +end + +function TEST(script) + local target = catch_target(script) + for _, enter in ipairs(target) do + local start, finish = enter.start, enter.finish + files.removeAll() + local pos = (start + finish) // 2 + 1 + local new_script = script:gsub('<[!?~]', ' '):gsub('[!?~]>', ' ') + files.setText('', new_script) + + local positions = core('', pos) + if positions then + assert(founded(target, positions)) + else + assert(#target == 0) + end + end +end + +TEST [[ +local = 1 +]] + +TEST [[ +local = 1 + = 2 + = +]] + +TEST [[ +t. = 1 +a = t. +]] + +TEST [[ +t = { + [] = 1, + = 1, +} +t[] = 1 +a = t. +]] + +TEST [[ +:: :: +goto +]] + +TEST [[ +local function f() + return +end +]] + +TEST [[ +local s = +]] + +TEST [[ +local b = +]] + +TEST [[ +local n = +]] + +TEST [[ +local n = +]] + +TEST [[ +local f () +]] + +TEST [[ + f () +]] + +TEST [[ +return () +]] + +TEST [[ + true + true + true + + +]] + +TEST [[ + _ _ + +]] + +TEST [[ + i = 1, 10 + +]] + +TEST [[ + true + +]] + +TEST [[ + + true +]] + +TEST [[ + + +]] -- cgit v1.2.3