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
df86ca20
Commit
df86ca20
authored
Apr 12, 2017
by
Liang Ding
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
✅
#12256 分类管理服务单元测试
parent
f09bba9a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
160 additions
and
1 deletion
+160
-1
src/main/java/org/b3log/solo/service/CategoryMgmtService.java
...main/java/org/b3log/solo/service/CategoryMgmtService.java
+3
-1
src/test/java/org/b3log/solo/service/CategoryMgmtServiceTestCase.java
...a/org/b3log/solo/service/CategoryMgmtServiceTestCase.java
+157
-0
No files found.
src/main/java/org/b3log/solo/service/CategoryMgmtService.java
View file @
df86ca20
...
...
@@ -182,7 +182,9 @@ public class CategoryMgmtService {
record
.
put
(
Category
.
CATEGORY_DESCRIPTION
,
category
.
optString
(
Category
.
CATEGORY_DESCRIPTION
));
final
int
maxOrder
=
categoryRepository
.
getMaxOrder
();
record
.
put
(
Category
.
CATEGORY_ORDER
,
maxOrder
+
1
);
final
int
order
=
maxOrder
+
1
;
record
.
put
(
Category
.
CATEGORY_ORDER
,
order
);
category
.
put
(
Category
.
CATEGORY_ORDER
,
order
);
final
String
ret
=
categoryRepository
.
add
(
record
);
...
...
src/test/java/org/b3log/solo/service/CategoryMgmtServiceTestCase.java
0 → 100644
View file @
df86ca20
/*
* Copyright (c) 2010-2017, 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
.
service
;
import
org.b3log.latke.model.User
;
import
org.b3log.solo.AbstractTestCase
;
import
org.b3log.solo.model.Category
;
import
org.json.JSONObject
;
import
org.testng.Assert
;
import
org.testng.annotations.Test
;
/**
* {@link CategoryMgmtService} test case.
*
* @author <a href="http://88250.b3log.org">Liang Ding</a>
* @version 1.0.0.0, Apr 12, 2017
* @since 2.0.0
*/
@Test
(
suiteName
=
"service"
)
public
class
CategoryMgmtServiceTestCase
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"
));
}
/**
* Add a category.
*
* @throws Exception exception
*/
@Test
(
dependsOnMethods
=
"init"
)
public
void
addCategory
()
throws
Exception
{
final
CategoryMgmtService
categoryMgmtService
=
getCategoryMgmtService
();
final
JSONObject
category
=
new
JSONObject
();
category
.
put
(
Category
.
CATEGORY_TITLE
,
"category1 title"
);
category
.
put
(
Category
.
CATEGORY_URI
,
"category1 uri"
);
category
.
put
(
Category
.
CATEGORY_DESCRIPTION
,
"category1 description"
);
final
String
categoryId
=
categoryMgmtService
.
addCategory
(
category
);
Assert
.
assertNotNull
(
categoryId
);
}
/**
* Remove a category.
*
* @throws Exception exception
*/
@Test
(
dependsOnMethods
=
"init"
)
public
void
removeCategory
()
throws
Exception
{
final
CategoryMgmtService
categoryMgmtService
=
getCategoryMgmtService
();
final
JSONObject
category
=
new
JSONObject
();
category
.
put
(
Category
.
CATEGORY_TITLE
,
"category2 title"
);
category
.
put
(
Category
.
CATEGORY_URI
,
"category2 uri"
);
category
.
put
(
Category
.
CATEGORY_DESCRIPTION
,
"category2 description"
);
final
String
categoryId
=
categoryMgmtService
.
addCategory
(
category
);
Assert
.
assertNotNull
(
categoryId
);
final
CategoryQueryService
categoryQueryService
=
getCategoryQueryService
();
JSONObject
result
=
categoryQueryService
.
getCategory
(
categoryId
);
Assert
.
assertNotNull
(
result
);
Assert
.
assertEquals
(
result
.
getString
(
Category
.
CATEGORY_TITLE
),
"category2 title"
);
categoryMgmtService
.
removeCategory
(
categoryId
);
result
=
categoryQueryService
.
getCategory
(
categoryId
);
Assert
.
assertNull
(
result
);
}
/**
* Update a category.
*
* @throws Exception exception
*/
@Test
(
dependsOnMethods
=
"init"
)
public
void
updateCategory
()
throws
Exception
{
final
CategoryMgmtService
categoryMgmtService
=
getCategoryMgmtService
();
final
JSONObject
category
=
new
JSONObject
();
category
.
put
(
Category
.
CATEGORY_TITLE
,
"category3 title"
);
category
.
put
(
Category
.
CATEGORY_URI
,
"category3 uri"
);
category
.
put
(
Category
.
CATEGORY_DESCRIPTION
,
"category3 description"
);
final
String
categoryId
=
categoryMgmtService
.
addCategory
(
category
);
Assert
.
assertNotNull
(
categoryId
);
final
CategoryQueryService
categoryQueryService
=
getCategoryQueryService
();
JSONObject
result
=
categoryQueryService
.
getCategory
(
categoryId
);
Assert
.
assertNotNull
(
result
);
Assert
.
assertEquals
(
result
.
getString
(
Category
.
CATEGORY_TITLE
),
"category3 title"
);
category
.
put
(
Category
.
CATEGORY_TITLE
,
"updated category3 title"
);
categoryMgmtService
.
updateCategory
(
categoryId
,
category
);
result
=
categoryQueryService
.
getCategory
(
categoryId
);
Assert
.
assertNotNull
(
result
);
Assert
.
assertEquals
(
result
.
getString
(
Category
.
CATEGORY_TITLE
),
"updated category3 title"
);
}
/**
* Change Order.
*
* @throws Exception exception
*/
@Test
(
dependsOnMethods
=
"addCategory"
)
public
void
changeOrder
()
throws
Exception
{
final
CategoryMgmtService
categoryMgmtService
=
getCategoryMgmtService
();
final
JSONObject
category
=
new
JSONObject
();
category
.
put
(
Category
.
CATEGORY_TITLE
,
"category4 title"
);
category
.
put
(
Category
.
CATEGORY_URI
,
"category4 uri"
);
category
.
put
(
Category
.
CATEGORY_DESCRIPTION
,
"category4 description"
);
final
String
categoryId
=
categoryMgmtService
.
addCategory
(
category
);
Assert
.
assertNotNull
(
categoryId
);
final
int
oldOrder
=
category
.
getInt
(
Category
.
CATEGORY_ORDER
);
categoryMgmtService
.
changeOrder
(
categoryId
,
"up"
);
final
JSONObject
result
=
getCategoryQueryService
().
getCategory
(
categoryId
);
Assert
.
assertNotNull
(
result
);
Assert
.
assertTrue
(
oldOrder
>
result
.
getInt
(
Category
.
CATEGORY_ORDER
));
}
}
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