🔀 Merge “release/v81” into “master”
[Sone.git] / src / test / kotlin / net / pterodactylus / sone / web / pages / DebugPageTest.kt
1 /**
2  * Sone - DebugPageTest.kt - Copyright © 2019–2020 David ‘Bombe’ Roden
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 package net.pterodactylus.sone.web.pages
19
20 import net.pterodactylus.sone.test.*
21 import net.pterodactylus.sone.web.*
22 import net.pterodactylus.sone.web.WebTestUtils.*
23 import net.pterodactylus.sone.web.page.FreenetTemplatePage.*
24 import org.hamcrest.MatcherAssert.*
25 import org.hamcrest.Matchers.*
26 import org.junit.Rule
27 import org.junit.rules.*
28 import org.junit.rules.ExpectedException.*
29 import org.mockito.Mockito.*
30 import kotlin.test.*
31
32 class DebugPageTest : WebPageTest(::DebugPage) {
33
34         @Rule
35         @JvmField
36         val expectedException: ExpectedException = none()
37
38         @Test
39         fun `page returns correct path`() {
40                 assertThat(page.path, equalTo("debug"))
41         }
42
43         @Test
44         fun `page does not require login`() {
45                 assertThat(page.requiresLogin(), equalTo(false))
46         }
47
48         @Test
49         fun `page can be created by dependency injection`() {
50                 assertThat(baseInjector.getInstance<DebugPage>(), notNullValue())
51         }
52
53         @Test
54         fun `get request activates debug mode`() {
55                 try {
56                         page.handleRequest(soneRequest, templateContext)
57                 } catch (_: RedirectException) {
58                 }
59                 verify(core).setDebug()
60         }
61
62         @Test
63         fun `get request redirects to index`() {
64                 expectedException.expect(redirectsTo("./"))
65                 page.handleRequest(soneRequest, templateContext)
66         }
67
68 }
69