Commit 7890daa7 authored by Liang Ding's avatar Liang Ding

获取 prefs

parent 2392128a
...@@ -94,7 +94,7 @@ public class PreferenceConsoleTestCase extends AbstractTestCase { ...@@ -94,7 +94,7 @@ public class PreferenceConsoleTestCase extends AbstractTestCase {
*/ */
@Test(dependsOnMethods = "init") @Test(dependsOnMethods = "init")
public void updatePreference() throws Exception { public void updatePreference() throws Exception {
final JSONObject p = getPreferenceQueryService().getPreference(); final JSONObject p = getOptionQueryService().getPreference();
final MockHttpServletRequest request = mockRequest(); final MockHttpServletRequest request = mockRequest();
request.setRequestURI("/console/preference/"); request.setRequestURI("/console/preference/");
......
...@@ -67,4 +67,17 @@ public class OptionQueryServiceTestCase extends AbstractTestCase { ...@@ -67,4 +67,17 @@ public class OptionQueryServiceTestCase extends AbstractTestCase {
Assert.assertNotNull(options); Assert.assertNotNull(options);
Assert.assertEquals(options.optLong(Option.ID_C_BLOG_TITLE), 5L); 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 的个人博客");
}
} }
...@@ -50,15 +50,15 @@ public class PreferenceMgmtServiceTestCase extends AbstractTestCase { ...@@ -50,15 +50,15 @@ public class PreferenceMgmtServiceTestCase extends AbstractTestCase {
@Test(dependsOnMethods = "init") @Test(dependsOnMethods = "init")
public void updatePreference() throws Exception { public void updatePreference() throws Exception {
final PreferenceMgmtService preferenceMgmtService = getPreferenceMgmtService(); final PreferenceMgmtService preferenceMgmtService = getPreferenceMgmtService();
final PreferenceQueryService preferenceQueryService = getPreferenceQueryService(); final OptionQueryService optionQueryService = getOptionQueryService();
JSONObject preference = preferenceQueryService.getPreference(); JSONObject preference = optionQueryService.getPreference();
Assert.assertEquals(preference.getString(Option.ID_C_BLOG_TITLE), "Solo 的个人博客"); Assert.assertEquals(preference.getString(Option.ID_C_BLOG_TITLE), "Solo 的个人博客");
preference.put(Option.ID_C_BLOG_TITLE, "updated blog title"); preference.put(Option.ID_C_BLOG_TITLE, "updated blog title");
preferenceMgmtService.updatePreference(preference); preferenceMgmtService.updatePreference(preference);
preference = preferenceQueryService.getPreference(); preference = optionQueryService.getPreference();
Assert.assertEquals(preference.getString(Option.ID_C_BLOG_TITLE), "updated blog title"); Assert.assertEquals(preference.getString(Option.ID_C_BLOG_TITLE), "updated blog title");
} }
} }
/*
* 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 的个人博客");
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment