Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
solo
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
Commits
8cc8dd46
Commit
8cc8dd46
authored
Nov 08, 2016
by
Liang Ding
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#12188
parent
f1c877a4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
415 additions
and
2 deletions
+415
-2
src/test/java/org/b3log/solo/processor/ArticleProcessorTestCase.java
...va/org/b3log/solo/processor/ArticleProcessorTestCase.java
+413
-0
src/test/java/org/b3log/solo/processor/TagProcessorTestCase.java
...t/java/org/b3log/solo/processor/TagProcessorTestCase.java
+2
-2
No files found.
src/test/java/org/b3log/solo/processor/ArticleProcessorTestCase.java
0 → 100644
View file @
8cc8dd46
/*
* Copyright (c) 2010-2016, b3log.org & hacpai.com
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package
org
.
b3log
.
solo
.
processor
;
import
java.io.PrintWriter
;
import
java.io.StringWriter
;
import
java.util.Map
;
import
javax.servlet.ServletContext
;
import
javax.servlet.http.HttpServletRequest
;
import
javax.servlet.http.HttpServletResponse
;
import
org.apache.commons.lang.StringUtils
;
import
org.apache.commons.lang.time.DateFormatUtils
;
import
org.b3log.latke.Keys
;
import
org.b3log.latke.ioc.Lifecycle
;
import
org.b3log.latke.model.User
;
import
org.b3log.latke.repository.Query
;
import
org.b3log.latke.servlet.HTTPRequestContext
;
import
org.b3log.solo.AbstractTestCase
;
import
org.b3log.solo.model.Article
;
import
org.b3log.solo.service.InitService
;
import
org.b3log.solo.service.UserQueryService
;
import
org.json.JSONObject
;
import
static
org
.
mockito
.
Mockito
.*;
import
org.testng.Assert
;
import
org.testng.annotations.Test
;
/**
* {@link ArticleProcessor} test case.
*
* @author <a href="http://88250.b3log.org">Liang Ding</a>
* @version 1.0.0.0, Nov 8, 2016
* @since 1.7.0
*/
@Test
(
suiteName
=
"processor"
)
public
class
ArticleProcessorTestCase
extends
AbstractTestCase
{
/**
* Init.
*
* @throws Exception exception
*/
@Test
public
void
init
()
throws
Exception
{
final
InitService
initService
=
getInitService
();
final
JSONObject
requestJSONObject
=
new
JSONObject
();
requestJSONObject
.
put
(
User
.
USER_EMAIL
,
"test@gmail.com"
);
requestJSONObject
.
put
(
User
.
USER_NAME
,
"Admin"
);
requestJSONObject
.
put
(
User
.
USER_PASSWORD
,
"pass"
);
initService
.
init
(
requestJSONObject
);
final
UserQueryService
userQueryService
=
getUserQueryService
();
Assert
.
assertNotNull
(
userQueryService
.
getUserByEmail
(
"test@gmail.com"
));
}
/**
* getArchivesArticlesByPage.
*
* @throws Exception exception
*/
@Test
(
dependsOnMethods
=
"init"
)
public
void
getArchivesArticlesByPage
()
throws
Exception
{
final
HttpServletRequest
request
=
mock
(
HttpServletRequest
.
class
);
when
(
request
.
getServletContext
()).
thenReturn
(
mock
(
ServletContext
.
class
));
when
(
request
.
getRequestURI
()).
thenReturn
(
"/articles/archives/"
+
DateFormatUtils
.
format
(
System
.
currentTimeMillis
(),
"yyyy/MM"
)
+
"/1"
);
when
(
request
.
getMethod
()).
thenReturn
(
"GET"
);
when
(
request
.
getAttribute
(
Keys
.
TEMAPLTE_DIR_NAME
)).
thenReturn
(
"next"
);
when
(
request
.
getAttribute
(
Keys
.
HttpRequest
.
START_TIME_MILLIS
)).
thenReturn
(
System
.
currentTimeMillis
());
final
MockDispatcherServlet
dispatcherServlet
=
new
MockDispatcherServlet
();
dispatcherServlet
.
init
();
final
StringWriter
stringWriter
=
new
StringWriter
();
final
PrintWriter
printWriter
=
new
PrintWriter
(
stringWriter
);
final
HttpServletResponse
response
=
mock
(
HttpServletResponse
.
class
);
when
(
response
.
getWriter
()).
thenReturn
(
printWriter
);
dispatcherServlet
.
service
(
request
,
response
);
final
String
content
=
stringWriter
.
toString
();
Assert
.
assertTrue
(
StringUtils
.
contains
(
content
,
"{\"sc\":true"
));
}
/**
* getArticleContent.
*
* @throws Exception exception
*/
@Test
(
dependsOnMethods
=
"init"
)
public
void
getArticleContent
()
throws
Exception
{
final
JSONObject
article
=
getArticleRepository
().
get
(
new
Query
()).
optJSONArray
(
Keys
.
RESULTS
).
optJSONObject
(
0
);
final
String
articleId
=
article
.
optString
(
Keys
.
OBJECT_ID
);
final
HttpServletRequest
request
=
mock
(
HttpServletRequest
.
class
);
when
(
request
.
getServletContext
()).
thenReturn
(
mock
(
ServletContext
.
class
));
when
(
request
.
getRequestURI
()).
thenReturn
(
"/get-article-content"
);
when
(
request
.
getParameter
(
"id"
)).
thenReturn
(
articleId
);
when
(
request
.
getMethod
()).
thenReturn
(
"GET"
);
when
(
request
.
getAttribute
(
Keys
.
TEMAPLTE_DIR_NAME
)).
thenReturn
(
"next"
);
when
(
request
.
getAttribute
(
Keys
.
HttpRequest
.
START_TIME_MILLIS
)).
thenReturn
(
System
.
currentTimeMillis
());
final
MockDispatcherServlet
dispatcherServlet
=
new
MockDispatcherServlet
();
dispatcherServlet
.
init
();
final
StringWriter
stringWriter
=
new
StringWriter
();
final
PrintWriter
printWriter
=
new
PrintWriter
(
stringWriter
);
final
HttpServletResponse
response
=
mock
(
HttpServletResponse
.
class
);
when
(
response
.
getWriter
()).
thenReturn
(
printWriter
);
dispatcherServlet
.
service
(
request
,
response
);
final
String
content
=
stringWriter
.
toString
();
Assert
.
assertTrue
(
StringUtils
.
contains
(
content
,
"<p>欢迎使用"
));
}
/**
* getArticlesByPage.
*
* @throws Exception exception
*/
@Test
(
dependsOnMethods
=
"init"
)
public
void
getArticlesByPage
()
throws
Exception
{
final
HttpServletRequest
request
=
mock
(
HttpServletRequest
.
class
);
when
(
request
.
getServletContext
()).
thenReturn
(
mock
(
ServletContext
.
class
));
when
(
request
.
getRequestURI
()).
thenReturn
(
"/articles/1"
);
when
(
request
.
getMethod
()).
thenReturn
(
"GET"
);
when
(
request
.
getAttribute
(
Keys
.
TEMAPLTE_DIR_NAME
)).
thenReturn
(
"next"
);
when
(
request
.
getAttribute
(
Keys
.
HttpRequest
.
START_TIME_MILLIS
)).
thenReturn
(
System
.
currentTimeMillis
());
final
MockDispatcherServlet
dispatcherServlet
=
new
MockDispatcherServlet
();
dispatcherServlet
.
init
();
final
StringWriter
stringWriter
=
new
StringWriter
();
final
PrintWriter
printWriter
=
new
PrintWriter
(
stringWriter
);
final
HttpServletResponse
response
=
mock
(
HttpServletResponse
.
class
);
when
(
response
.
getWriter
()).
thenReturn
(
printWriter
);
dispatcherServlet
.
service
(
request
,
response
);
final
String
content
=
stringWriter
.
toString
();
Assert
.
assertTrue
(
StringUtils
.
contains
(
content
,
"{\"sc\":true"
));
}
/**
* getAuthorsArticlesByPage.
*
* @throws Exception exception
*/
@Test
(
dependsOnMethods
=
"init"
)
public
void
getAuthorsArticlesByPage
()
throws
Exception
{
final
JSONObject
admin
=
getUserRepository
().
getAdmin
();
final
String
userId
=
admin
.
optString
(
Keys
.
OBJECT_ID
);
final
HttpServletRequest
request
=
mock
(
HttpServletRequest
.
class
);
when
(
request
.
getServletContext
()).
thenReturn
(
mock
(
ServletContext
.
class
));
when
(
request
.
getRequestURI
()).
thenReturn
(
"/articles/authors/"
+
userId
+
"/1"
);
when
(
request
.
getMethod
()).
thenReturn
(
"GET"
);
when
(
request
.
getAttribute
(
Keys
.
TEMAPLTE_DIR_NAME
)).
thenReturn
(
"next"
);
when
(
request
.
getAttribute
(
Keys
.
HttpRequest
.
START_TIME_MILLIS
)).
thenReturn
(
System
.
currentTimeMillis
());
final
MockDispatcherServlet
dispatcherServlet
=
new
MockDispatcherServlet
();
dispatcherServlet
.
init
();
final
StringWriter
stringWriter
=
new
StringWriter
();
final
PrintWriter
printWriter
=
new
PrintWriter
(
stringWriter
);
final
HttpServletResponse
response
=
mock
(
HttpServletResponse
.
class
);
when
(
response
.
getWriter
()).
thenReturn
(
printWriter
);
dispatcherServlet
.
service
(
request
,
response
);
final
String
content
=
stringWriter
.
toString
();
Assert
.
assertTrue
(
StringUtils
.
contains
(
content
,
"{\"sc\":true"
));
}
/**
* getRandomArticles.
*
* @throws Exception exception
*/
@Test
(
dependsOnMethods
=
"init"
)
public
void
getRandomArticles
()
throws
Exception
{
final
HttpServletRequest
request
=
mock
(
HttpServletRequest
.
class
);
when
(
request
.
getServletContext
()).
thenReturn
(
mock
(
ServletContext
.
class
));
when
(
request
.
getRequestURI
()).
thenReturn
(
"/get-random-articles.do"
);
when
(
request
.
getMethod
()).
thenReturn
(
"POST"
);
when
(
request
.
getAttribute
(
Keys
.
TEMAPLTE_DIR_NAME
)).
thenReturn
(
"next"
);
when
(
request
.
getAttribute
(
Keys
.
HttpRequest
.
START_TIME_MILLIS
)).
thenReturn
(
System
.
currentTimeMillis
());
final
MockDispatcherServlet
dispatcherServlet
=
new
MockDispatcherServlet
();
dispatcherServlet
.
init
();
final
StringWriter
stringWriter
=
new
StringWriter
();
final
PrintWriter
printWriter
=
new
PrintWriter
(
stringWriter
);
final
HttpServletResponse
response
=
mock
(
HttpServletResponse
.
class
);
when
(
response
.
getWriter
()).
thenReturn
(
printWriter
);
dispatcherServlet
.
service
(
request
,
response
);
final
String
content
=
stringWriter
.
toString
();
Assert
.
assertTrue
(
StringUtils
.
contains
(
content
,
"{\"randomArticles"
));
}
/**
* getRelevantArticles.
*
* @throws Exception exception
*/
@Test
(
dependsOnMethods
=
"init"
)
public
void
getRelevantArticles
()
throws
Exception
{
final
JSONObject
article
=
getArticleRepository
().
get
(
new
Query
()).
optJSONArray
(
Keys
.
RESULTS
).
optJSONObject
(
0
);
final
String
articleId
=
article
.
optString
(
Keys
.
OBJECT_ID
);
final
HttpServletRequest
request
=
mock
(
HttpServletRequest
.
class
);
when
(
request
.
getServletContext
()).
thenReturn
(
mock
(
ServletContext
.
class
));
when
(
request
.
getRequestURI
()).
thenReturn
(
"/article/id/"
+
articleId
+
"/relevant/articles"
);
when
(
request
.
getMethod
()).
thenReturn
(
"GET"
);
when
(
request
.
getAttribute
(
Keys
.
TEMAPLTE_DIR_NAME
)).
thenReturn
(
"next"
);
when
(
request
.
getAttribute
(
Keys
.
HttpRequest
.
START_TIME_MILLIS
)).
thenReturn
(
System
.
currentTimeMillis
());
final
MockDispatcherServlet
dispatcherServlet
=
new
MockDispatcherServlet
();
dispatcherServlet
.
init
();
final
StringWriter
stringWriter
=
new
StringWriter
();
final
PrintWriter
printWriter
=
new
PrintWriter
(
stringWriter
);
final
HttpServletResponse
response
=
mock
(
HttpServletResponse
.
class
);
when
(
response
.
getWriter
()).
thenReturn
(
printWriter
);
dispatcherServlet
.
service
(
request
,
response
);
final
String
content
=
stringWriter
.
toString
();
Assert
.
assertTrue
(
StringUtils
.
contains
(
content
,
"{\"relevantArticles\""
));
}
/**
* getTagArticlesByPage.
*
* @throws Exception exception
*/
@Test
(
dependsOnMethods
=
"init"
)
public
void
getTagArticlesByPage
()
throws
Exception
{
final
HttpServletRequest
request
=
mock
(
HttpServletRequest
.
class
);
when
(
request
.
getServletContext
()).
thenReturn
(
mock
(
ServletContext
.
class
));
when
(
request
.
getRequestURI
()).
thenReturn
(
"/articles/tags/Solo/1"
);
when
(
request
.
getMethod
()).
thenReturn
(
"GET"
);
when
(
request
.
getAttribute
(
Keys
.
TEMAPLTE_DIR_NAME
)).
thenReturn
(
"next"
);
when
(
request
.
getAttribute
(
Keys
.
HttpRequest
.
START_TIME_MILLIS
)).
thenReturn
(
System
.
currentTimeMillis
());
final
MockDispatcherServlet
dispatcherServlet
=
new
MockDispatcherServlet
();
dispatcherServlet
.
init
();
final
StringWriter
stringWriter
=
new
StringWriter
();
final
PrintWriter
printWriter
=
new
PrintWriter
(
stringWriter
);
final
HttpServletResponse
response
=
mock
(
HttpServletResponse
.
class
);
when
(
response
.
getWriter
()).
thenReturn
(
printWriter
);
dispatcherServlet
.
service
(
request
,
response
);
final
String
content
=
stringWriter
.
toString
();
Assert
.
assertTrue
(
StringUtils
.
contains
(
content
,
"{\"sc\":true"
));
}
/**
* showArchiveArticles.
*
* @throws Exception exception
*/
@Test
(
dependsOnMethods
=
"init"
)
public
void
showArchiveArticles
()
throws
Exception
{
final
HttpServletRequest
request
=
mock
(
HttpServletRequest
.
class
);
when
(
request
.
getServletContext
()).
thenReturn
(
mock
(
ServletContext
.
class
));
when
(
request
.
getRequestURI
()).
thenReturn
(
"/archives/"
+
DateFormatUtils
.
format
(
System
.
currentTimeMillis
(),
"yyyy/MM"
)
+
"/1"
);
when
(
request
.
getMethod
()).
thenReturn
(
"GET"
);
when
(
request
.
getAttribute
(
Keys
.
TEMAPLTE_DIR_NAME
)).
thenReturn
(
"next"
);
when
(
request
.
getAttribute
(
Keys
.
HttpRequest
.
START_TIME_MILLIS
)).
thenReturn
(
System
.
currentTimeMillis
());
final
MockDispatcherServlet
dispatcherServlet
=
new
MockDispatcherServlet
();
dispatcherServlet
.
init
();
final
StringWriter
stringWriter
=
new
StringWriter
();
final
PrintWriter
printWriter
=
new
PrintWriter
(
stringWriter
);
final
HttpServletResponse
response
=
mock
(
HttpServletResponse
.
class
);
when
(
response
.
getWriter
()).
thenReturn
(
printWriter
);
dispatcherServlet
.
service
(
request
,
response
);
final
String
content
=
stringWriter
.
toString
();
Assert
.
assertTrue
(
StringUtils
.
contains
(
content
,
"Solo 示例</title>"
));
}
/**
* showArticle.
*
* @throws Exception exception
*/
@Test
(
dependsOnMethods
=
"init"
)
public
void
showArticle
()
throws
Exception
{
final
JSONObject
article
=
getArticleRepository
().
get
(
new
Query
()).
optJSONArray
(
Keys
.
RESULTS
).
optJSONObject
(
0
);
final
HttpServletRequest
request
=
mock
(
HttpServletRequest
.
class
);
when
(
request
.
getServletContext
()).
thenReturn
(
mock
(
ServletContext
.
class
));
when
(
request
.
getRequestURI
()).
thenReturn
(
"/pagepermalink"
);
when
(
request
.
getMethod
()).
thenReturn
(
"GET"
);
when
(
request
.
getAttribute
(
Keys
.
TEMAPLTE_DIR_NAME
)).
thenReturn
(
"next"
);
when
(
request
.
getAttribute
(
Keys
.
HttpRequest
.
START_TIME_MILLIS
)).
thenReturn
(
System
.
currentTimeMillis
());
when
(
request
.
getAttribute
(
Article
.
ARTICLE
)).
thenReturn
(
article
);
final
StringWriter
stringWriter
=
new
StringWriter
();
final
PrintWriter
printWriter
=
new
PrintWriter
(
stringWriter
);
final
HttpServletResponse
response
=
mock
(
HttpServletResponse
.
class
);
when
(
response
.
getWriter
()).
thenReturn
(
printWriter
);
final
HTTPRequestContext
httpRequestContext
=
new
HTTPRequestContext
();
httpRequestContext
.
setRequest
(
request
);
httpRequestContext
.
setResponse
(
response
);
final
ArticleProcessor
articleProcessor
=
Lifecycle
.
getBeanManager
().
getReference
(
ArticleProcessor
.
class
);
articleProcessor
.
showArticle
(
httpRequestContext
,
request
,
response
);
final
Map
<
String
,
Object
>
dataModel
=
httpRequestContext
.
getRenderer
().
getRenderDataModel
();
final
JSONObject
handledArticle
=
(
JSONObject
)
dataModel
.
get
(
Article
.
ARTICLE
);
Assert
.
assertTrue
(
StringUtils
.
contains
(
handledArticle
.
optString
(
Keys
.
OBJECT_ID
),
article
.
optString
(
Keys
.
OBJECT_ID
)));
}
/**
* showArticlePwdForm.
*
* @throws Exception exception
*/
@Test
(
dependsOnMethods
=
"init"
)
public
void
showArticlePwdForm
()
throws
Exception
{
final
JSONObject
article
=
getArticleRepository
().
get
(
new
Query
()).
optJSONArray
(
Keys
.
RESULTS
).
optJSONObject
(
0
);
final
String
articleId
=
article
.
optString
(
Keys
.
OBJECT_ID
);
final
HttpServletRequest
request
=
mock
(
HttpServletRequest
.
class
);
when
(
request
.
getServletContext
()).
thenReturn
(
mock
(
ServletContext
.
class
));
when
(
request
.
getRequestURI
()).
thenReturn
(
"/console/article-pwd"
);
when
(
request
.
getMethod
()).
thenReturn
(
"GET"
);
when
(
request
.
getParameter
(
"articleId"
)).
thenReturn
(
articleId
);
when
(
request
.
getAttribute
(
Keys
.
TEMAPLTE_DIR_NAME
)).
thenReturn
(
"next"
);
when
(
request
.
getAttribute
(
Keys
.
HttpRequest
.
START_TIME_MILLIS
)).
thenReturn
(
System
.
currentTimeMillis
());
final
MockDispatcherServlet
dispatcherServlet
=
new
MockDispatcherServlet
();
dispatcherServlet
.
init
();
final
StringWriter
stringWriter
=
new
StringWriter
();
final
PrintWriter
printWriter
=
new
PrintWriter
(
stringWriter
);
final
HttpServletResponse
response
=
mock
(
HttpServletResponse
.
class
);
when
(
response
.
getWriter
()).
thenReturn
(
printWriter
);
dispatcherServlet
.
service
(
request
,
response
);
final
String
content
=
stringWriter
.
toString
();
Assert
.
assertTrue
(
StringUtils
.
contains
(
content
,
"<title>访问密码</title>"
));
}
/**
* showAuthorArticles.
*
* @throws Exception exception
*/
@Test
(
dependsOnMethods
=
"init"
)
public
void
showAuthorArticles
()
throws
Exception
{
final
JSONObject
admin
=
getUserRepository
().
getAdmin
();
final
String
userId
=
admin
.
optString
(
Keys
.
OBJECT_ID
);
final
HttpServletRequest
request
=
mock
(
HttpServletRequest
.
class
);
when
(
request
.
getServletContext
()).
thenReturn
(
mock
(
ServletContext
.
class
));
when
(
request
.
getRequestURI
()).
thenReturn
(
"/authors/"
+
userId
+
"/1"
);
when
(
request
.
getMethod
()).
thenReturn
(
"GET"
);
when
(
request
.
getAttribute
(
Keys
.
TEMAPLTE_DIR_NAME
)).
thenReturn
(
"next"
);
when
(
request
.
getAttribute
(
Keys
.
HttpRequest
.
START_TIME_MILLIS
)).
thenReturn
(
System
.
currentTimeMillis
());
final
MockDispatcherServlet
dispatcherServlet
=
new
MockDispatcherServlet
();
dispatcherServlet
.
init
();
final
StringWriter
stringWriter
=
new
StringWriter
();
final
PrintWriter
printWriter
=
new
PrintWriter
(
stringWriter
);
final
HttpServletResponse
response
=
mock
(
HttpServletResponse
.
class
);
when
(
response
.
getWriter
()).
thenReturn
(
printWriter
);
dispatcherServlet
.
service
(
request
,
response
);
final
String
content
=
stringWriter
.
toString
();
// Assert.assertTrue(StringUtils.contains(content, "Solo 示例"));
}
}
src/test/java/org/b3log/solo/processor/TagProcessorTestCase.java
View file @
8cc8dd46
...
...
@@ -62,12 +62,12 @@ public class TagProcessorTestCase extends AbstractTestCase {
}
/**
* show
Index
.
* show
TagArticles
.
*
* @throws Exception exception
*/
@Test
(
dependsOnMethods
=
"init"
)
public
void
show
Index
()
throws
Exception
{
public
void
show
TagArticles
()
throws
Exception
{
final
HttpServletRequest
request
=
mock
(
HttpServletRequest
.
class
);
when
(
request
.
getServletContext
()).
thenReturn
(
mock
(
ServletContext
.
class
));
when
(
request
.
getRequestURI
()).
thenReturn
(
"/tags/Solo"
);
...
...
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