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
d16374d6
Commit
d16374d6
authored
Nov 05, 2016
by
Liang Ding
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#12188
parent
ec4354eb
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
309 additions
and
5 deletions
+309
-5
src/test/java/org/b3log/solo/processor/CommentProcessorTestCase.java
...va/org/b3log/solo/processor/CommentProcessorTestCase.java
+1
-5
src/test/java/org/b3log/solo/processor/PageProcessorTestCase.java
.../java/org/b3log/solo/processor/PageProcessorTestCase.java
+125
-0
src/test/java/org/b3log/solo/processor/SitemapProcessorTestCase.java
...va/org/b3log/solo/processor/SitemapProcessorTestCase.java
+90
-0
src/test/java/org/b3log/solo/processor/StatProcessorTestCase.java
.../java/org/b3log/solo/processor/StatProcessorTestCase.java
+93
-0
No files found.
src/test/java/org/b3log/solo/processor/CommentProcessorTestCase.java
View file @
d16374d6
...
...
@@ -43,7 +43,7 @@ import org.testng.annotations.Test;
* {@link CommentProcessorTestCase} test case.
*
* @author <a href="http://88250.b3log.org">Liang Ding</a>
* @version 1.0.0.
0, Nov 2
, 2016
* @version 1.0.0.
1, Nov 5
, 2016
* @since 1.7.0
*/
@Test
(
suiteName
=
"processor"
)
...
...
@@ -76,8 +76,6 @@ public class CommentProcessorTestCase extends AbstractTestCase {
*/
@Test
(
dependsOnMethods
=
"init"
)
public
void
addPageComment
()
throws
Exception
{
addPage
();
final
HttpServletRequest
request
=
mock
(
HttpServletRequest
.
class
);
when
(
request
.
getServletContext
()).
thenReturn
(
mock
(
ServletContext
.
class
));
when
(
request
.
getRequestURI
()).
thenReturn
(
"/add-page-comment.do"
);
...
...
@@ -120,8 +118,6 @@ public class CommentProcessorTestCase extends AbstractTestCase {
*/
@Test
(
dependsOnMethods
=
"init"
)
public
void
addArticleComment
()
throws
Exception
{
addPage
();
final
HttpServletRequest
request
=
mock
(
HttpServletRequest
.
class
);
when
(
request
.
getServletContext
()).
thenReturn
(
mock
(
ServletContext
.
class
));
when
(
request
.
getRequestURI
()).
thenReturn
(
"/add-article-comment.do"
);
...
...
src/test/java/org/b3log/solo/processor/PageProcessorTestCase.java
0 → 100644
View file @
d16374d6
/*
* 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.b3log.latke.Keys
;
import
org.b3log.latke.ioc.Lifecycle
;
import
org.b3log.latke.model.User
;
import
org.b3log.latke.service.ServiceException
;
import
org.b3log.latke.servlet.HTTPRequestContext
;
import
org.b3log.solo.AbstractTestCase
;
import
org.b3log.solo.model.Page
;
import
org.b3log.solo.repository.PageRepository
;
import
org.b3log.solo.service.InitService
;
import
org.b3log.solo.service.PageMgmtService
;
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 PageProcessor} test case.
*
* @author <a href="http://88250.b3log.org">Liang Ding</a>
* @version 1.0.0.0, Nov 5, 2016
* @since 1.7.0
*/
@Test
(
suiteName
=
"processor"
)
public
class
PageProcessorTestCase
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"
));
}
/**
* showPage.
*
* @throws Exception exception
*/
@Test
(
dependsOnMethods
=
"init"
)
public
void
showPage
()
throws
Exception
{
final
JSONObject
page
=
addPage
();
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
(
Page
.
PAGE
)).
thenReturn
(
page
);
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
PageProcessor
pageProcessor
=
Lifecycle
.
getBeanManager
().
getReference
(
PageProcessor
.
class
);
pageProcessor
.
showPage
(
httpRequestContext
);
final
Map
<
String
,
Object
>
dataModel
=
httpRequestContext
.
getRenderer
().
getRenderDataModel
();
final
JSONObject
handledPage
=
(
JSONObject
)
dataModel
.
get
(
Page
.
PAGE
);
Assert
.
assertTrue
(
StringUtils
.
contains
(
handledPage
.
optString
(
Keys
.
OBJECT_ID
),
page
.
optString
(
Keys
.
OBJECT_ID
)));
}
private
JSONObject
addPage
()
throws
Exception
{
final
PageMgmtService
pageMgmtService
=
getPageMgmtService
();
final
JSONObject
requestJSONObject
=
new
JSONObject
();
final
JSONObject
page
=
new
JSONObject
();
requestJSONObject
.
put
(
Page
.
PAGE
,
page
);
page
.
put
(
Page
.
PAGE_CONTENT
,
"page1 content"
);
page
.
put
(
Page
.
PAGE_PERMALINK
,
"pagepermalink"
);
page
.
put
(
Page
.
PAGE_TITLE
,
"page1 title"
);
page
.
put
(
Page
.
PAGE_COMMENTABLE
,
true
);
page
.
put
(
Page
.
PAGE_TYPE
,
"page"
);
page
.
put
(
Page
.
PAGE_OPEN_TARGET
,
"_self"
);
final
String
pageId
=
pageMgmtService
.
addPage
(
requestJSONObject
);
final
PageRepository
pageRepository
=
getPageRepository
();
return
pageRepository
.
get
(
pageId
);
}
}
src/test/java/org/b3log/solo/processor/SitemapProcessorTestCase.java
0 → 100644
View file @
d16374d6
/*
* 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
javax.servlet.ServletContext
;
import
javax.servlet.http.HttpServletRequest
;
import
javax.servlet.http.HttpServletResponse
;
import
org.apache.commons.lang.StringUtils
;
import
org.b3log.latke.model.User
;
import
org.b3log.solo.AbstractTestCase
;
import
org.b3log.solo.service.InitService
;
import
org.b3log.solo.service.UserQueryService
;
import
org.json.JSONObject
;
import
static
org
.
mockito
.
Mockito
.
mock
;
import
static
org
.
mockito
.
Mockito
.
when
;
import
org.testng.Assert
;
import
org.testng.annotations.Test
;
/**
* {@link SitemapProcessor} test case.
*
* @author <a href="http://88250.b3log.org">Liang Ding</a>
* @version 1.0.0.0, Nov 5, 2016
* @since 1.7.0
*/
@Test
(
suiteName
=
"processor"
)
public
class
SitemapProcessorTestCase
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"
));
}
/**
* blogArticlesAtom.
*
* @throws Exception exception
*/
@Test
(
dependsOnMethods
=
"init"
)
public
void
blogArticlesAtom
()
throws
Exception
{
final
HttpServletRequest
request
=
mock
(
HttpServletRequest
.
class
);
when
(
request
.
getServletContext
()).
thenReturn
(
mock
(
ServletContext
.
class
));
when
(
request
.
getRequestURI
()).
thenReturn
(
"/sitemap.xml"
);
when
(
request
.
getMethod
()).
thenReturn
(
"GET"
);
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
.
startsWith
(
content
,
"<?xml version=\"1.0\""
));
}
}
src/test/java/org/b3log/solo/processor/StatProcessorTestCase.java
0 → 100644
View file @
d16374d6
/*
* 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
javax.servlet.ServletContext
;
import
javax.servlet.http.HttpServletRequest
;
import
javax.servlet.http.HttpServletResponse
;
import
org.b3log.latke.Keys
;
import
org.b3log.latke.model.User
;
import
org.b3log.solo.AbstractTestCase
;
import
org.b3log.solo.service.InitService
;
import
org.b3log.solo.service.StatisticMgmtService
;
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 StatProcessor} test case.
*
* @author <a href="http://88250.b3log.org">Liang Ding</a>
* @version 1.0.0.0, Nov 5, 2016
* @since 1.7.0
*/
@Test
(
suiteName
=
"processor"
)
public
class
StatProcessorTestCase
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"
));
}
/**
* showIndex.
*
* @throws Exception exception
*/
@Test
(
dependsOnMethods
=
"init"
)
public
void
showIndex
()
throws
Exception
{
final
HttpServletRequest
request
=
mock
(
HttpServletRequest
.
class
);
when
(
request
.
getServletContext
()).
thenReturn
(
mock
(
ServletContext
.
class
));
when
(
request
.
getRequestURI
()).
thenReturn
(
"/console/stat/onlineVisitorRefresh"
);
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
);
StatisticMgmtService
.
ONLINE_VISITORS
.
put
(
"127.0.0.1"
,
Long
.
MIN_VALUE
);
dispatcherServlet
.
service
(
request
,
response
);
Assert
.
assertTrue
(
0
==
StatisticMgmtService
.
ONLINE_VISITORS
.
size
());
}
}
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