File size: 14,348 Bytes
d1ceb73 |
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 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 |
# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.
import hashlib
import json
from unittest.mock import patch
from . import fake_client_factory
FAKE_ATOM_FEED = b"""<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="3.9.2">Jekyll</generator><link href="https://jupyterlab.github.io/assets/feed.xml" rel="self" type="application/atom+xml" /><link href="https://jupyterlab.github.io/assets/" rel="alternate" type="text/html" /><updated>2022-11-02T15:14:50+00:00</updated><id>https://jupyterlab.github.io/assets/feed.xml</id><title type="html">JupyterLab News</title><subtitle>Subscribe to get news about JupyterLab.</subtitle><entry><title type="html">Thanks for using JupyterLab</title><link href="https://jupyterlab.github.io/assets/posts/2022/11/02/demo.html" rel="alternate" type="text/html" title="Thanks for using JupyterLab" /><published>2022-11-02T14:00:00+00:00</published><updated>2022-11-02T14:00:00+00:00</updated><id>https://jupyterlab.github.io/assets/posts/2022/11/02/demo</id><content type="html" xml:base="https://jupyterlab.github.io/assets/posts/2022/11/02/demo.html"><h1 id="welcome">Welcome</h1>
<p>Thanks a lot for your interest in JupyterLab.</p></content><author><name></name></author><category term="posts" /><summary type="html">Big thanks to you, beloved JupyterLab user.</summary></entry></feed>"""
FAKE_JUPYTERLAB_PYPI_JSON = b"""{ "info": { "version": "1000.0.0" } }"""
@patch("tornado.httpclient.AsyncHTTPClient", new_callable=fake_client_factory)
async def test_NewsHandler_get_success(mock_client, labserverapp, jp_fetch):
mock_client.body = FAKE_ATOM_FEED
response = await jp_fetch("lab", "api", "news", method="GET")
assert response.code == 200
payload = json.loads(response.body)
assert payload["news"] == [
{
"createdAt": 1667397600000.0,
"message": "Thanks for using JupyterLab\nBig thanks to you, beloved JupyterLab user.",
"modifiedAt": 1667397600000.0,
"type": "info",
"link": [
"Open full post",
"https://jupyterlab.github.io/assets/posts/2022/11/02/demo.html",
],
"options": {
"data": {
"id": "https://jupyterlab.github.io/assets/posts/2022/11/02/demo",
"tags": ["news"],
}
},
}
]
@patch("tornado.httpclient.AsyncHTTPClient", new_callable=fake_client_factory)
async def test_NewsHandler_get_failure(mock_client, labserverapp, jp_fetch):
response = await jp_fetch("lab", "api", "news", method="GET")
assert response.code == 200
payload = json.loads(response.body)
assert payload["news"] == []
@patch("tornado.httpclient.AsyncHTTPClient", new_callable=fake_client_factory)
async def test_CheckForUpdateHandler_get_pypi_success(mock_client, labserverapp, jp_fetch):
mock_client.body = FAKE_JUPYTERLAB_PYPI_JSON
response = await jp_fetch("lab", "api", "update", method="GET")
message = "A newer version (1000.0.0) of JupyterLab is available."
assert response.code == 200
payload = json.loads(response.body)
assert payload["notification"]["message"] == message
assert payload["notification"]["link"] == [
"Open changelog",
"https://github.com/jupyterlab/jupyterlab/releases/tag/v1000.0.0",
]
assert payload["notification"]["options"] == {
"data": {"id": hashlib.sha1(message.encode()).hexdigest(), "tags": ["update"]} # noqa: S324
}
@patch("tornado.httpclient.AsyncHTTPClient", new_callable=fake_client_factory)
async def test_CheckForUpdateHandler_get_failure(mock_client, labserverapp, jp_fetch):
response = await jp_fetch("lab", "api", "update", method="GET")
assert response.code == 200
payload = json.loads(response.body)
assert payload["notification"] is None
FAKE_NO_SUMMARY_ATOM_FEED = b"""<?xml version='1.0' encoding='UTF-8'?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en"><id>https://jupyterlab.github.io/assets/feed.xml</id><title>JupyterLab News</title><updated>2023-05-02T19:01:33.669598+00:00</updated><author><name>John Doe</name><email>[email protected]</email></author><link href="https://jupyterlab.github.io/assets/feed.xml" rel="self" type="application/atom+xml"/><link href="https://jupyterlab.github.io/assets/" rel="alternate" type="text/html"/><generator uri="https://lkiesow.github.io/python-feedgen" version="0.9.0">python-feedgen</generator><logo>http://ex.com/logo.jpg</logo><subtitle>Subscribe to get news about JupyterLab.</subtitle><entry><id>https://jupyterlab.github.io/assets/posts/2022/11/02/demo</id><title>Thanks for using JupyterLab</title><updated>2022-11-02T14:00:00+00:00</updated><link href="https://jupyterlab.github.io/assets/posts/2022/11/02/demo.html" rel="alternate" type="text/html" title="Thanks for using JupyterLab"/><published>2022-11-02T14:00:00+00:00</published></entry></feed>"""
@patch("tornado.httpclient.AsyncHTTPClient", new_callable=fake_client_factory)
async def test_NewsHandler_get_missing_summary(mock_client, labserverapp, jp_fetch):
mock_client.body = FAKE_NO_SUMMARY_ATOM_FEED
response = await jp_fetch("lab", "api", "news", method="GET")
assert response.code == 200
payload = json.loads(response.body)
assert payload["news"] == [
{
"createdAt": 1667397600000.0,
"message": "Thanks for using JupyterLab",
"modifiedAt": 1667397600000.0,
"type": "info",
"link": [
"Open full post",
"https://jupyterlab.github.io/assets/posts/2022/11/02/demo.html",
],
"options": {
"data": {
"id": "https://jupyterlab.github.io/assets/posts/2022/11/02/demo",
"tags": ["news"],
}
},
}
]
FAKE_MULTI_ENTRY_LINKS_ATOM_FEED = b"""<?xml version='1.0' encoding='UTF-8'?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en"><id>https://jupyterlab.github.io/assets/feed.xml</id><title>JupyterLab News</title><updated>2023-05-02T19:59:44.332080+00:00</updated><author><name>John Doe</name><email>[email protected]</email></author><link href="https://jupyterlab.github.io/assets/feed.xml" rel="self" type="application/atom+xml"/><link href="https://jupyterlab.github.io/assets/" rel="alternate" type="text/html"/><generator uri="https://lkiesow.github.io/python-feedgen" version="0.9.0">python-feedgen</generator><logo>http://ex.com/logo.jpg</logo><subtitle>Subscribe to get news about JupyterLab.</subtitle><entry><id>https://jupyterlab.github.io/assets/posts/2022/11/02/demo</id><title>Thanks for using JupyterLab</title><updated>2022-11-02T14:00:00+00:00</updated><link href="https://jupyterlab.github.io/assets/posts/2022/11/02/demo_self.html" rel="self" type="text/html" title="Thanks for using JupyterLab"/><link href="https://jupyterlab.github.io/assets/posts/2022/11/02/demo.html" rel="alternate" type="text/html" title="Thanks for using JupyterLab"/><summary>Big thanks to you, beloved JupyterLab user.</summary><published>2022-11-02T14:00:00+00:00</published></entry></feed>"""
@patch("tornado.httpclient.AsyncHTTPClient", new_callable=fake_client_factory)
async def test_NewsHandler_multi_entry_links(mock_client, labserverapp, jp_fetch):
mock_client.body = FAKE_MULTI_ENTRY_LINKS_ATOM_FEED
response = await jp_fetch("lab", "api", "news", method="GET")
assert response.code == 200
payload = json.loads(response.body)
assert payload["news"] == [
{
"createdAt": 1667397600000.0,
"message": "Thanks for using JupyterLab\nBig thanks to you, beloved JupyterLab user.",
"modifiedAt": 1667397600000.0,
"type": "info",
"link": [
"Open full post",
"https://jupyterlab.github.io/assets/posts/2022/11/02/demo.html",
],
"options": {
"data": {
"id": "https://jupyterlab.github.io/assets/posts/2022/11/02/demo",
"tags": ["news"],
}
},
}
]
FAKE_NO_PUBLISHED_ATOM_FEED = b"""<?xml version='1.0' encoding='UTF-8'?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en"><id>https://jupyterlab.github.io/assets/feed.xml</id><title>JupyterLab News</title><updated>2023-05-02T19:32:08.566055+00:00</updated><author><name>John Doe</name><email>[email protected]</email></author><link href="https://jupyterlab.github.io/assets/feed.xml" rel="self" type="application/atom+xml"/><link href="https://jupyterlab.github.io/assets/" rel="alternate" type="text/html"/><generator uri="https://lkiesow.github.io/python-feedgen" version="0.9.0">python-feedgen</generator><logo>http://ex.com/logo.jpg</logo><subtitle>Subscribe to get news about JupyterLab.</subtitle><entry><id>https://jupyterlab.github.io/assets/posts/2022/11/02/demo</id><title>Thanks for using JupyterLab</title><updated>2022-11-02T14:00:00+00:00</updated><link href="https://jupyterlab.github.io/assets/posts/2022/11/02/demo.html" rel="alternate" type="text/html" title="Thanks for using JupyterLab"/><summary>Big thanks to you, beloved JupyterLab user.</summary></entry></feed>"""
@patch("tornado.httpclient.AsyncHTTPClient", new_callable=fake_client_factory)
async def test_NewsHandler_no_published(mock_client, labserverapp, jp_fetch):
mock_client.body = FAKE_NO_PUBLISHED_ATOM_FEED
response = await jp_fetch("lab", "api", "news", method="GET")
assert response.code == 200
payload = json.loads(response.body)
assert payload["news"] == [
{
"createdAt": 1667397600000.0,
"message": "Thanks for using JupyterLab\nBig thanks to you, beloved JupyterLab user.",
"modifiedAt": 1667397600000.0,
"type": "info",
"link": [
"Open full post",
"https://jupyterlab.github.io/assets/posts/2022/11/02/demo.html",
],
"options": {
"data": {
"id": "https://jupyterlab.github.io/assets/posts/2022/11/02/demo",
"tags": ["news"],
}
},
}
]
FAKE_LINK_NO_REL_ATOM_FEED = b"""<?xml version='1.0' encoding='UTF-8'?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en"><id>https://jupyterlab.github.io/assets/feed.xml</id><title>JupyterLab News</title><updated>2023-05-03T17:06:43.950978+00:00</updated><author><name>John Doe</name><email>[email protected]</email></author><link href="https://jupyterlab.github.io/assets/feed.xml" rel="self" type="application/atom+xml"/><link href="https://jupyterlab.github.io/assets/" rel="alternate" type="text/html"/><generator uri="https://lkiesow.github.io/python-feedgen" version="0.9.0">python-feedgen</generator><logo>http://ex.com/logo.jpg</logo><subtitle>Subscribe to get news about JupyterLab.</subtitle><entry><id>https://jupyterlab.github.io/assets/posts/2022/11/02/demo</id><title>Thanks for using JupyterLab</title><updated>2022-11-02T14:00:00+00:00</updated><link href="https://jupyterlab.github.io/assets/posts/2022/11/02/demo.html" type="text/html" title="Thanks for using JupyterLab"/><summary>Big thanks to you, beloved JupyterLab user.</summary><published>2022-11-02T14:00:00+00:00</published></entry></feed>"""
@patch("tornado.httpclient.AsyncHTTPClient", new_callable=fake_client_factory)
async def test_NewsHandler_link_no_rel(mock_client, labserverapp, jp_fetch):
mock_client.body = FAKE_LINK_NO_REL_ATOM_FEED
response = await jp_fetch("lab", "api", "news", method="GET")
assert response.code == 200
payload = json.loads(response.body)
assert payload["news"] == [
{
"createdAt": 1667397600000.0,
"message": "Thanks for using JupyterLab\nBig thanks to you, beloved JupyterLab user.",
"modifiedAt": 1667397600000.0,
"type": "info",
"link": [
"Open full post",
"https://jupyterlab.github.io/assets/posts/2022/11/02/demo.html",
],
"options": {
"data": {
"id": "https://jupyterlab.github.io/assets/posts/2022/11/02/demo",
"tags": ["news"],
}
},
}
]
FAKE_NO_LINK_ATOM_FEED = b"""<?xml version='1.0' encoding='UTF-8'?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en"><id>https://jupyterlab.github.io/assets/feed.xml</id><title>JupyterLab News</title><updated>2023-05-03T17:06:43.950978+00:00</updated><author><name>John Doe</name><email>[email protected]</email></author><link href="https://jupyterlab.github.io/assets/feed.xml" rel="self" type="application/atom+xml"/><link href="https://jupyterlab.github.io/assets/" rel="alternate" type="text/html"/><generator uri="https://lkiesow.github.io/python-feedgen" version="0.9.0">python-feedgen</generator><logo>http://ex.com/logo.jpg</logo><subtitle>Subscribe to get news about JupyterLab.</subtitle><entry><id>https://jupyterlab.github.io/assets/posts/2022/11/02/demo</id><title>Thanks for using JupyterLab</title><updated>2022-11-02T14:00:00+00:00</updated><summary>Big thanks to you, beloved JupyterLab user.</summary><published>2022-11-02T14:00:00+00:00</published></entry></feed>"""
@patch("tornado.httpclient.AsyncHTTPClient", new_callable=fake_client_factory)
async def test_NewsHandler_no_links(mock_client, labserverapp, jp_fetch):
mock_client.body = FAKE_NO_LINK_ATOM_FEED
response = await jp_fetch("lab", "api", "news", method="GET")
assert response.code == 200
payload = json.loads(response.body)
assert payload["news"] == [
{
"createdAt": 1667397600000.0,
"message": "Thanks for using JupyterLab\nBig thanks to you, beloved JupyterLab user.",
"modifiedAt": 1667397600000.0,
"type": "info",
"link": None,
"options": {
"data": {
"id": "https://jupyterlab.github.io/assets/posts/2022/11/02/demo",
"tags": ["news"],
}
},
}
]
|