Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
solo-1
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
solo-1
Commits
ed57b005
Unverified
Commit
ed57b005
authored
Feb 07, 2019
by
Liang Ding
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
💚
#12641
parent
9c9d6017
Changes
3
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
916 additions
and
81 deletions
+916
-81
src/test/java/org/b3log/solo/processor/IndexProcessorTestCase.java
...java/org/b3log/solo/processor/IndexProcessorTestCase.java
+20
-0
src/test/java/org/b3log/solo/processor/LoginProcessorTestCase.java
...java/org/b3log/solo/processor/LoginProcessorTestCase.java
+0
-81
src/test/resources/markdown_syntax.text
src/test/resources/markdown_syntax.text
+896
-0
No files found.
src/test/java/org/b3log/solo/processor/IndexProcessorTestCase.java
View file @
ed57b005
...
@@ -21,9 +21,13 @@ import org.apache.commons.lang.StringUtils;
...
@@ -21,9 +21,13 @@ import org.apache.commons.lang.StringUtils;
import
org.b3log.solo.AbstractTestCase
;
import
org.b3log.solo.AbstractTestCase
;
import
org.b3log.solo.MockHttpServletRequest
;
import
org.b3log.solo.MockHttpServletRequest
;
import
org.b3log.solo.MockHttpServletResponse
;
import
org.b3log.solo.MockHttpServletResponse
;
import
org.b3log.solo.util.Solos
;
import
org.testng.Assert
;
import
org.testng.Assert
;
import
org.testng.annotations.Test
;
import
org.testng.annotations.Test
;
import
javax.servlet.http.Cookie
;
import
java.util.List
;
/**
/**
* {@link IndexProcessor} test case.
* {@link IndexProcessor} test case.
*
*
...
@@ -85,4 +89,20 @@ public class IndexProcessorTestCase extends AbstractTestCase {
...
@@ -85,4 +89,20 @@ public class IndexProcessorTestCase extends AbstractTestCase {
final
String
content
=
response
.
body
();
final
String
content
=
response
.
body
();
Assert
.
assertTrue
(
StringUtils
.
contains
(
content
,
"<title>Admin 的个人博客 - 403 Forbidden!</title>"
));
Assert
.
assertTrue
(
StringUtils
.
contains
(
content
,
"<title>Admin 的个人博客 - 403 Forbidden!</title>"
));
}
}
/**
* logout.
*/
@Test
(
dependsOnMethods
=
"init"
)
public
void
logout
()
{
final
MockHttpServletRequest
request
=
mockRequest
();
request
.
setRequestURI
(
"/logout"
);
final
MockHttpServletResponse
response
=
mockResponse
();
mockDispatcherServletService
(
request
,
response
);
final
List
<
Cookie
>
cookies
=
response
.
cookies
();
Assert
.
assertEquals
(
cookies
.
size
(),
1
);
Assert
.
assertEquals
(
cookies
.
get
(
0
).
getName
(),
Solos
.
COOKIE_NAME
);
Assert
.
assertNull
(
cookies
.
get
(
0
).
getValue
());
}
}
}
src/test/java/org/b3log/solo/processor/LoginProcessorTestCase.java
deleted
100644 → 0
View file @
9c9d6017
/*
* Solo - A small and beautiful blogging system written in Java.
* Copyright (c) 2010-2019, b3log.org & hacpai.com
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package
org
.
b3log
.
solo
.
processor
;
import
org.apache.commons.lang.StringUtils
;
import
org.b3log.solo.AbstractTestCase
;
import
org.b3log.solo.MockHttpServletRequest
;
import
org.b3log.solo.MockHttpServletResponse
;
import
org.b3log.solo.util.Solos
;
import
org.testng.Assert
;
import
org.testng.annotations.Test
;
import
javax.servlet.http.Cookie
;
import
java.util.List
;
/**
* {@link LoginProcessor} test case.
*
* @author <a href="http://88250.b3log.org">Liang Ding</a>
* @version 1.0.1.1, Jan 24, 2019
* @since 1.7.0
*/
@Test
(
suiteName
=
"processor"
)
public
class
LoginProcessorTestCase
extends
AbstractTestCase
{
/**
* Init.
*
* @throws Exception exception
*/
@Test
public
void
init
()
throws
Exception
{
super
.
init
();
}
/**
* showLogin.
*/
@Test
(
dependsOnMethods
=
"init"
)
public
void
showLogin
()
{
final
MockHttpServletRequest
request
=
mockRequest
();
request
.
setRequestURI
(
"/login"
);
final
MockHttpServletResponse
response
=
mockResponse
();
mockDispatcherServletService
(
request
,
response
);
final
String
content
=
response
.
body
();
Assert
.
assertTrue
(
StringUtils
.
contains
(
content
,
"<title>Admin 的个人博客 - 登录</title>"
));
}
/**
* logout.
*/
@Test
(
dependsOnMethods
=
"init"
)
public
void
logout
()
{
final
MockHttpServletRequest
request
=
mockRequest
();
request
.
setRequestURI
(
"/logout"
);
final
MockHttpServletResponse
response
=
mockResponse
();
mockDispatcherServletService
(
request
,
response
);
final
List
<
Cookie
>
cookies
=
response
.
cookies
();
Assert
.
assertEquals
(
cookies
.
size
(),
1
);
Assert
.
assertEquals
(
cookies
.
get
(
0
).
getName
(),
Solos
.
COOKIE_NAME
);
Assert
.
assertNull
(
cookies
.
get
(
0
).
getValue
());
}
}
src/test/resources/markdown_syntax.text
0 → 100644
View file @
ed57b005
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment