File: basic.lua

package info (click to toggle)
sputnik 12.06.27-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 2,900 kB
  • sloc: javascript: 6,955; sh: 762; python: 94; makefile: 42
file content (83 lines) | stat: -rw-r--r-- 2,327 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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
73
74
75
76
77
78
79
80
81
82
83


require"diff"




-- Print test split

TO_BE = [[To <b>be</b>, or not to be:
     that is the question:
   Whether 'tis nobler in the mind to suffer
        The slings and arrows of outrageous fortune,
       Or to take arms against a sea of troubles,
And by opposing end them?
]]

TO_BE_2 = [[To <b>be</b>, and <i>not</i> to be:
     that is the question:
   Whether 'tis nobler in the mind to suffer
        The slings and arrows of outrageous fortune,
       Or to take legs against a sea of troubles,
And by opposing end them?
]]

HTML_DIFF = [[To &lt;b&gt;be&lt;/b&gt;, <del>or</del><ins>and</ins> <del>not</del><ins>&lt;i&gt;not&lt;/i&gt;</ins> to be:
     that is the question:
   Whether 'tis nobler in the mind to suffer
        The slings and arrows of outrageous fortune,
       Or to take <del>arms</del><ins>legs</ins> against a sea of troubles,
And by opposing end them?
]]

SPLIT_1 = { "To", " ", "<b>be</b>,", " ", "or", " ", "not", " ", "to", " ", "be:", "\
     ", "that", " ", "is", " ", "the", " ", "question:", "\
   ", "Whether", " ", "'tis", " ", "nobler", " ", "in", " ", "the", " ",
"mind", " ", "to", " ", "suffer", "\
        ", "The", " ", "slings", " ", "and", " ", "arrows", " ", "of", " ",
"outrageous", " ", "fortune,", "\
       ", "Or", " ", "to", " ", "take", " ", "arms", " ", "against", " ",
"a", " ", "sea", " ", "of", " ", "troubles,", "\
", "And", " ", "by", " ", "opposing", " ", "end", " ", "them?", "\
"}

SPLIT_2 = { "To <b>be</b>, or not to be:",
 "     that is the question:",
 "   Whether 'tis nobler in the mind to suffer",
 "        The slings and arrows of outrageous fortune,",
 "       Or to take arms against a sea of troubles,",
 "And by opposing end them?"
}


local result = diff.split(TO_BE)
for i,v in ipairs(result) do
   --print(string.format("[%s], [%s]", v, SPLIT_1[i]))
   assert(v==SPLIT_1[i])
end

local result = diff.split(TO_BE, "\n", true)
for i,v in ipairs(result) do
   --print(string.format("[%s], [%s]", v, SPLIT_1[i]))
   assert(v==SPLIT_2[i])
end


--for i, v in ipairs(diff.diff(TO_BE, TO_BE_2)) do
--   if v[2]~="same" then
--      print (v[1], v[2])
--   end
--end



d = diff.diff(TO_BE, TO_BE_2):to_html()
assert(d == HTML_DIFF)


--buffer = ""
--for i,v in ipairs(result) do
--   buffer = buffer..string.format(" %q,", v)
--end
--print (buffer)