forked from j0ack/flask-codemirror
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.py
126 lines (103 loc) · 4.03 KB
/
test.py
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
#! /usr/bin/env python
# -*- coding: utf-8 -*-
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
"""
Flask Codemirror Test
~~~~~~~~~~~~~~~~~~~~~
Unit tests for Flask-CodeMirror
"""
import unittest
from flask import Flask, render_template_string
from flask_wtf import FlaskForm
from flask_codemirror import CodeMirror, CodeMirrorConfigException
from flask_codemirror.fields import CodeMirrorField
__author__ = "TROUVERIE Joachim"
# create app
app = Flask(__name__)
# config
CODEMIRROR_LANGUAGES = ["python"]
CODEMIRROR_THEME = "3024-day"
CODEMIRROR_ADDONS = (("dialog", "dialog"), ("mode", "overlay"))
CODEMIRROR_VERSION = "5.61.0"
SECRET_KEY = "secret!"
app.config.from_object(__name__)
# codemirror
codemirror = CodeMirror(app)
class MyForm(FlaskForm):
code = CodeMirrorField(language="python", id="test", config={"linenumbers": True})
@app.route("/")
def index():
return render_template_string("{{ codemirror.include_codemirror() }}")
@app.route("/form/")
def form():
test_form = MyForm()
return render_template_string("{{ form.code }}", form=test_form)
class FlaskCodeMirrorTest(unittest.TestCase):
def setUp(self):
app.config["TESTING"] = True
self.app = app.test_client()
def test_head(self):
response = self.app.get("/")
self.assertIn(
b'<script src="//cdnjs.cloudflare.com/ajax/libs/codemirror/5.61.0/codemirror.js"></script>',
response.data,
)
self.assertIn(
b'<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/codemirror/5.61.0/codemirror.css">',
response.data,
)
self.assertIn(
b'<script src="//cdnjs.cloudflare.com/ajax/libs/codemirror/5.61.0/mode/python/python.js"></script>',
response.data,
)
self.assertIn(
b'<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/codemirror/5.61.0/theme/3024-day.css">',
response.data,
)
self.assertIn(
b'<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/codemirror/5.61.0/theme/3024-day.css">',
response.data,
)
self.assertIn(
b'<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/codemirror/5.61.0/addon/dialog/dialog.css">',
response.data,
)
self.assertIn(
b'<script src="//cdnjs.cloudflare.com/ajax/libs/codemirror/5.61.0/addon/dialog/dialog.js"></script>',
response.data,
)
self.assertNotIn(
b'<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/codemirror/5.61.0/addon/mode/overlay.css">',
response.data,
)
self.assertIn(
b'<script src="//cdnjs.cloudflare.com/ajax/libs/codemirror/5.61.0/addon/mode/overlay.js"></script>',
response.data,
)
def test_form(self):
response = self.app.get("/form/")
self.assertIn(
b'<textarea id="flask-codemirror-test" name="code">', response.data
)
self.assertIn(b"var editor_for_test = CodeMirror.fromTextArea(", response.data)
self.assertIn(
b"document.getElementById('flask-codemirror-test')", response.data
)
self.assertIn(b'"linenumbers": true', response.data)
def test_exception(self):
app.config["CODEMIRROR_LANGUAGES"] = None
with self.assertRaises(CodeMirrorConfigException):
CodeMirror(app)
if __name__ == "__main__":
unittest.main()