Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
CodeMirror
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Moritz Aurel Pascal Schubotz
CodeMirror
Commits
340f9b0b
Commit
340f9b0b
authored
12 years ago
by
Marijn Haverbeke
Browse files
Options
Downloads
Patches
Plain Diff
[tests] Add scroll-rounding test, improve test runner
parent
404257d4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
test/driver.js
+42
-0
42 additions, 0 deletions
test/driver.js
test/index.html
+27
-1
27 additions, 1 deletion
test/index.html
test/test.js
+27
-63
27 additions, 63 deletions
test/test.js
with
96 additions
and
64 deletions
test/driver.js
0 → 100644
+
42
−
0
View file @
340f9b0b
var
tests
=
[],
runOnly
=
null
;
function
Failure
(
why
)
{
this
.
message
=
why
;}
function
test
(
name
,
run
)
{
tests
.
push
({
name
:
name
,
func
:
run
});}
function
testCM
(
name
,
run
,
opts
)
{
test
(
name
,
function
()
{
var
place
=
document
.
getElementById
(
"
testground
"
),
cm
=
CodeMirror
(
place
,
opts
);
try
{
run
(
cm
);}
finally
{
place
.
removeChild
(
cm
.
getWrapperElement
());}
});
}
function
runTests
(
callback
)
{
function
step
(
i
)
{
if
(
i
==
tests
.
length
)
return
callback
(
"
done
"
);
var
test
=
tests
[
i
];
if
(
runOnly
!=
null
&&
runOnly
!=
test
.
name
)
return
step
(
i
+
1
);
try
{
test
.
func
();
callback
(
"
ok
"
,
test
.
name
);}
catch
(
e
)
{
if
(
e
instanceof
Failure
)
callback
(
"
fail
"
,
test
.
name
,
e
.
message
);
else
callback
(
"
error
"
,
test
.
name
,
e
.
toString
());
}
setTimeout
(
function
(){
step
(
i
+
1
);},
20
);
}
step
(
0
);
}
function
eq
(
a
,
b
,
msg
)
{
if
(
a
!=
b
)
throw
new
Failure
(
a
+
"
!=
"
+
b
+
(
msg
?
"
(
"
+
msg
+
"
)
"
:
""
));
}
function
eqPos
(
a
,
b
,
msg
)
{
if
(
a
==
b
)
return
;
if
(
a
==
null
||
b
==
null
)
throw
new
Failure
(
"
comparing point to null
"
);
eq
(
a
.
line
,
b
.
line
,
msg
);
eq
(
a
.
ch
,
b
.
ch
,
msg
);
}
function
is
(
a
,
msg
)
{
if
(
!
a
)
throw
new
Failure
(
"
assertion failed
"
+
(
msg
?
"
(
"
+
msg
+
"
)
"
:
""
));
}
This diff is collapsed.
Click to expand it.
test/index.html
+
27
−
1
View file @
340f9b0b
...
...
@@ -8,7 +8,7 @@
<style
type=
"text/css"
>
.ok
{
color
:
#0e0
;}
.fail
ure
{
color
:
#e00
;}
.fail
{
color
:
#e00
;}
.error
{
color
:
#c90
;}
</style>
</head>
...
...
@@ -18,11 +18,37 @@
<p>
A limited set of programmatic sanity tests for CodeMirror.
</p>
<pre
id=
output
></pre>
<pre
id=
status
></pre>
<div
style=
"visibility: hidden"
id=
testground
>
<form><textarea
id=
"code"
name=
"code"
></textarea><input
type=
submit
value=
ok
name=
submit
></form>
</div>
<script
src=
"driver.js"
></script>
<script
src=
"test.js"
></script>
<script>
window
.
onload
=
function
()
{
runTests
(
displayTest
);
};
var
output
=
document
.
getElementById
(
"
output
"
),
statusElt
=
document
.
getElementById
(
"
status
"
);
var
count
=
0
,
failed
=
0
,
bad
=
""
;
function
displayTest
(
type
,
name
,
msg
)
{
if
(
type
!=
"
done
"
)
++
count
;
var
countText
=
"
Ran
"
+
count
+
"
of
"
+
tests
.
length
+
"
tests
\n
"
;
if
(
type
==
"
ok
"
)
{
statusElt
.
innerHTML
=
countText
+
"
<span class=ok>Test '
"
+
CodeMirror
.
htmlEscape
(
name
)
+
"
' succeeded</span>
"
;
}
else
if
(
type
==
"
error
"
||
type
==
"
fail
"
)
{
++
failed
;
statusElt
.
innerHTML
=
countText
;
bad
+=
CodeMirror
.
htmlEscape
(
name
)
+
"
: <span class=
"
+
type
+
"
>
"
+
CodeMirror
.
htmlEscape
(
msg
)
+
"
</span>
\n
"
;
output
.
innerHTML
=
bad
;
}
else
if
(
type
==
"
done
"
)
{
statusElt
.
innerHTML
=
"
Ran
"
+
count
+
"
tests
\n
"
+
(
failed
?
"
<span class=fail>
"
+
failed
+
"
failure
"
+
(
failed
>
1
?
"
s
"
:
""
)
+
"
</span>
"
:
"
<span class=ok>All passed</span>
"
);
}
}
</script>
</body>
</html>
This diff is collapsed.
Click to expand it.
test/test.js
+
27
−
63
View file @
340f9b0b
var
tests
=
[];
function
forEach
(
arr
,
f
)
{
for
(
var
i
=
0
,
e
=
arr
.
length
;
i
<
e
;
++
i
)
f
(
arr
[
i
]);
}
test
(
"
fromTextArea
"
,
function
()
{
var
te
=
document
.
getElementById
(
"
code
"
);
...
...
@@ -115,12 +117,17 @@ testCM("lineInfo", function(cm) {
eq
(
cm
.
lineInfo
(
1
).
markerText
,
null
);
},
{
value
:
"
111111
\n
222222
\n
333333
"
});
function
addBigDoc
(
cm
,
width
,
height
)
{
var
content
=
[],
line
=
""
;
for
(
var
i
=
0
;
i
<
width
;
++
i
)
line
+=
"
x
"
;
for
(
var
i
=
0
;
i
<
height
;
++
i
)
content
.
push
(
line
);
cm
.
setValue
(
content
.
join
(
"
\n
"
));
}
testCM
(
"
coords
"
,
function
(
cm
)
{
var
scroller
=
cm
.
getScrollerElement
();
scroller
.
style
.
height
=
"
100px
"
;
var
content
=
[];
for
(
var
i
=
0
;
i
<
200
;
++
i
)
content
.
push
(
"
------------------------------
"
+
i
);
cm
.
setValue
(
content
.
join
(
"
\n
"
));
addBigDoc
(
cm
,
32
,
200
);
var
top
=
cm
.
charCoords
({
line
:
0
,
ch
:
0
});
var
bot
=
cm
.
charCoords
({
line
:
200
,
ch
:
30
});
is
(
top
.
x
<
bot
.
x
);
...
...
@@ -133,9 +140,7 @@ testCM("coords", function(cm) {
});
testCM
(
"
coordsChar
"
,
function
(
cm
)
{
var
content
=
[];
for
(
var
i
=
0
;
i
<
70
;
++
i
)
content
.
push
(
"
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
"
);
cm
.
setValue
(
content
.
join
(
"
\n
"
));
addBigDoc
(
cm
,
35
,
70
);
for
(
var
ch
=
0
;
ch
<
35
;
ch
+=
2
)
{
for
(
var
line
=
0
;
line
<
70
;
line
+=
5
)
{
cm
.
setCursor
(
line
,
ch
);
...
...
@@ -293,59 +298,18 @@ testCM("bug577", function(cm) {
cm
.
undo
();
});
// Scaffolding
function
htmlEscape
(
str
)
{
return
str
.
replace
(
/
[
<&
]
/g
,
function
(
str
)
{
return
str
==
"
&
"
?
"
&
"
:
"
<
"
;});
}
function
forEach
(
arr
,
f
)
{
for
(
var
i
=
0
,
e
=
arr
.
length
;
i
<
e
;
++
i
)
f
(
arr
[
i
]);
}
function
Failure
(
why
)
{
this
.
message
=
why
;}
function
test
(
name
,
run
)
{
tests
.
push
({
name
:
name
,
func
:
run
});}
function
testCM
(
name
,
run
,
opts
)
{
test
(
name
,
function
()
{
var
place
=
document
.
getElementById
(
"
testground
"
),
cm
=
CodeMirror
(
place
,
opts
);
try
{
run
(
cm
);}
finally
{
place
.
removeChild
(
cm
.
getWrapperElement
());}
});
}
function
runTests
()
{
var
failures
=
[],
run
=
0
;
for
(
var
i
=
0
;
i
<
tests
.
length
;
++
i
)
{
var
test
=
tests
[
i
];
try
{
test
.
func
();}
catch
(
e
)
{
if
(
e
instanceof
Failure
)
failures
.
push
({
type
:
"
failure
"
,
test
:
test
.
name
,
text
:
e
.
message
});
else
failures
.
push
({
type
:
"
error
"
,
test
:
test
.
name
,
text
:
e
.
toString
()});
}
run
++
;
}
var
html
=
[
run
+
"
tests run.
"
];
if
(
failures
.
length
)
forEach
(
failures
,
function
(
fail
)
{
html
.
push
(
fail
.
test
+
'
: <span class="
'
+
fail
.
type
+
'
">
'
+
htmlEscape
(
fail
.
text
)
+
"
</span>
"
);
});
else
html
.
push
(
'
<span class="ok">All passed.</span>
'
);
document
.
getElementById
(
"
output
"
).
innerHTML
=
html
.
join
(
"
\n
"
);
}
function
eq
(
a
,
b
,
msg
)
{
if
(
a
!=
b
)
throw
new
Failure
(
a
+
"
!=
"
+
b
+
(
msg
?
"
(
"
+
msg
+
"
)
"
:
""
));
}
function
eqPos
(
a
,
b
,
msg
)
{
if
(
a
==
b
)
return
;
if
(
a
==
null
||
b
==
null
)
throw
new
Failure
(
"
comparing point to null
"
);
eq
(
a
.
line
,
b
.
line
,
msg
);
eq
(
a
.
ch
,
b
.
ch
,
msg
);
}
function
is
(
a
,
msg
)
{
if
(
!
a
)
throw
new
Failure
(
"
assertion failed
"
+
(
msg
?
"
(
"
+
msg
+
"
)
"
:
""
));
}
window
.
onload
=
runTests
;
testCM
(
"
scrollSnap
"
,
function
(
cm
)
{
cm
.
getScrollerElement
().
style
.
height
=
"
100px
"
;
cm
.
getWrapperElement
().
style
.
width
=
"
100px
"
;
addBigDoc
(
cm
,
200
,
200
);
cm
.
setCursor
({
line
:
100
,
ch
:
180
});
var
info
=
cm
.
getScrollInfo
();
is
(
info
.
x
>
0
&&
info
.
y
>
0
);
cm
.
setCursor
({
line
:
0
,
ch
:
0
});
info
=
cm
.
getScrollInfo
();
is
(
info
.
x
==
0
&&
info
.
y
==
0
,
"
scrolled clean to top
"
);
cm
.
setCursor
({
line
:
100
,
ch
:
180
});
cm
.
setCursor
({
line
:
199
,
ch
:
0
});
info
=
cm
.
getScrollInfo
();
is
(
info
.
x
==
0
&&
info
.
y
==
info
.
height
-
100
,
"
scrolled clean to bottom
"
);
});
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment