mirror of
https://github.com/Steffo99/referer.steffo.eu.git
synced 2024-11-22 02:54:22 +00:00
Add new tests
This commit is contained in:
parent
97569fef6f
commit
fe75fe2174
5 changed files with 75 additions and 1 deletions
17
app.py
17
app.py
|
@ -5,7 +5,22 @@ app = f.Flask(__name__)
|
||||||
|
|
||||||
@app.route("/")
|
@app.route("/")
|
||||||
def root_page():
|
def root_page():
|
||||||
return '<a href="/referer">Click on me!</a>'
|
return f.render_template("root.html")
|
||||||
|
|
||||||
|
|
||||||
|
@app.route("/link")
|
||||||
|
def link_page():
|
||||||
|
return f.render_template("link.html")
|
||||||
|
|
||||||
|
|
||||||
|
@app.route("/location/href")
|
||||||
|
def location_href_page():
|
||||||
|
return f.render_template("locationhref.html")
|
||||||
|
|
||||||
|
|
||||||
|
@app.route("/location/replace")
|
||||||
|
def location_replace_page():
|
||||||
|
return f.render_template("locationreplace.html")
|
||||||
|
|
||||||
|
|
||||||
@app.route('/referer')
|
@app.route('/referer')
|
||||||
|
|
12
templates/link.html
Normal file
12
templates/link.html
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>a href</title>
|
||||||
|
<script>
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<a href="/referer">Click on me!</a>
|
||||||
|
</body>
|
||||||
|
</html>
|
15
templates/locationhref.html
Normal file
15
templates/locationhref.html
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>location.href</title>
|
||||||
|
<script>
|
||||||
|
function move() {
|
||||||
|
location.href = "/referer"
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<button onclick="move()">Click on me!</button>
|
||||||
|
</body>
|
||||||
|
</html>
|
15
templates/locationreplace.html
Normal file
15
templates/locationreplace.html
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>location.replace</title>
|
||||||
|
<script>
|
||||||
|
function move() {
|
||||||
|
location.replace("/referer")
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<button onclick="move()">Click on me!</button>
|
||||||
|
</body>
|
||||||
|
</html>
|
17
templates/root.html
Normal file
17
templates/root.html
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>Referer tests</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>
|
||||||
|
Referer tests
|
||||||
|
</h1>
|
||||||
|
<ul>
|
||||||
|
<li><a href="{{ url_for("link_page") }}">Simple link</a></li>
|
||||||
|
<li><a href="{{ url_for("location_href_page") }}">location.href</a></li>
|
||||||
|
<li><a href="{{ url_for("location_replace_page") }}">location.replace()</a></li>
|
||||||
|
</ul>
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Reference in a new issue