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
7890daa7
Unverified
Commit
7890daa7
authored
Mar 03, 2019
by
Liang Ding
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
♻
获取 prefs
parent
2392128a
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
61 deletions
+17
-61
src/test/java/org/b3log/solo/processor/console/PreferenceConsoleTestCase.java
...log/solo/processor/console/PreferenceConsoleTestCase.java
+1
-1
src/test/java/org/b3log/solo/service/OptionQueryServiceTestCase.java
...va/org/b3log/solo/service/OptionQueryServiceTestCase.java
+13
-0
src/test/java/org/b3log/solo/service/PreferenceMgmtServiceTestCase.java
...org/b3log/solo/service/PreferenceMgmtServiceTestCase.java
+3
-3
src/test/java/org/b3log/solo/service/PreferenceQueryServiceTestCase.java
...rg/b3log/solo/service/PreferenceQueryServiceTestCase.java
+0
-57
No files found.
src/test/java/org/b3log/solo/processor/console/PreferenceConsoleTestCase.java
View file @
7890daa7
...
...
@@ -94,7 +94,7 @@ public class PreferenceConsoleTestCase extends AbstractTestCase {
*/
@Test
(
dependsOnMethods
=
"init"
)
public
void
updatePreference
()
throws
Exception
{
final
JSONObject
p
=
get
Preference
QueryService
().
getPreference
();
final
JSONObject
p
=
get
Option
QueryService
().
getPreference
();
final
MockHttpServletRequest
request
=
mockRequest
();
request
.
setRequestURI
(
"/console/preference/"
);
...
...
src/test/java/org/b3log/solo/service/OptionQueryServiceTestCase.java
View file @
7890daa7
...
...
@@ -67,4 +67,17 @@ public class OptionQueryServiceTestCase extends AbstractTestCase {
Assert
.
assertNotNull
(
options
);
Assert
.
assertEquals
(
options
.
optLong
(
Option
.
ID_C_BLOG_TITLE
),
5L
);
}
/**
* Get Preference.
*
* @throws Exception exception
*/
@Test
(
dependsOnMethods
=
"init"
)
public
void
getPreference
()
throws
Exception
{
final
OptionQueryService
optionQueryService
=
getOptionQueryService
();
final
JSONObject
preference
=
optionQueryService
.
getPreference
();
Assert
.
assertEquals
(
preference
.
getString
(
Option
.
ID_C_BLOG_TITLE
),
"Solo 的个人博客"
);
}
}
src/test/java/org/b3log/solo/service/PreferenceMgmtServiceTestCase.java
View file @
7890daa7
...
...
@@ -50,15 +50,15 @@ public class PreferenceMgmtServiceTestCase extends AbstractTestCase {
@Test
(
dependsOnMethods
=
"init"
)
public
void
updatePreference
()
throws
Exception
{
final
PreferenceMgmtService
preferenceMgmtService
=
getPreferenceMgmtService
();
final
PreferenceQueryService
preferenceQueryService
=
getPreference
QueryService
();
JSONObject
preference
=
preference
QueryService
.
getPreference
();
final
OptionQueryService
optionQueryService
=
getOption
QueryService
();
JSONObject
preference
=
option
QueryService
.
getPreference
();
Assert
.
assertEquals
(
preference
.
getString
(
Option
.
ID_C_BLOG_TITLE
),
"Solo 的个人博客"
);
preference
.
put
(
Option
.
ID_C_BLOG_TITLE
,
"updated blog title"
);
preferenceMgmtService
.
updatePreference
(
preference
);
preference
=
preference
QueryService
.
getPreference
();
preference
=
option
QueryService
.
getPreference
();
Assert
.
assertEquals
(
preference
.
getString
(
Option
.
ID_C_BLOG_TITLE
),
"updated blog title"
);
}
}
src/test/java/org/b3log/solo/service/PreferenceQueryServiceTestCase.java
deleted
100644 → 0
View file @
2392128a
/*
* 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
.
service
;
import
org.b3log.solo.AbstractTestCase
;
import
org.b3log.solo.model.Option
;
import
org.json.JSONObject
;
import
org.testng.Assert
;
import
org.testng.annotations.Test
;
/**
* {@link PreferenceQueryService} test case.
*
* @author <a href="http://88250.b3log.org">Liang Ding</a>
* @version 1.0.0.4, May 29, 2018
*/
@Test
(
suiteName
=
"service"
)
public
class
PreferenceQueryServiceTestCase
extends
AbstractTestCase
{
/**
* Init.
*
* @throws Exception exception
*/
@Test
public
void
init
()
throws
Exception
{
super
.
init
();
}
/**
* Get Preference.
*
* @throws Exception exception
*/
@Test
(
dependsOnMethods
=
"init"
)
public
void
getPreference
()
throws
Exception
{
final
PreferenceQueryService
preferenceQueryService
=
getPreferenceQueryService
();
final
JSONObject
preference
=
preferenceQueryService
.
getPreference
();
Assert
.
assertEquals
(
preference
.
getString
(
Option
.
ID_C_BLOG_TITLE
),
"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