Commit ed57b005 authored by Liang Ding's avatar Liang Ding

💚 #12641

parent 9c9d6017
...@@ -21,9 +21,13 @@ import org.apache.commons.lang.StringUtils; ...@@ -21,9 +21,13 @@ import org.apache.commons.lang.StringUtils;
import org.b3log.solo.AbstractTestCase; import org.b3log.solo.AbstractTestCase;
import org.b3log.solo.MockHttpServletRequest; import org.b3log.solo.MockHttpServletRequest;
import org.b3log.solo.MockHttpServletResponse; import org.b3log.solo.MockHttpServletResponse;
import org.b3log.solo.util.Solos;
import org.testng.Assert; import org.testng.Assert;
import org.testng.annotations.Test; import org.testng.annotations.Test;
import javax.servlet.http.Cookie;
import java.util.List;
/** /**
* {@link IndexProcessor} test case. * {@link IndexProcessor} test case.
* *
...@@ -85,4 +89,20 @@ public class IndexProcessorTestCase extends AbstractTestCase { ...@@ -85,4 +89,20 @@ public class IndexProcessorTestCase extends AbstractTestCase {
final String content = response.body(); final String content = response.body();
Assert.assertTrue(StringUtils.contains(content, "<title>Admin 的个人博客 - 403 Forbidden!</title>")); Assert.assertTrue(StringUtils.contains(content, "<title>Admin 的个人博客 - 403 Forbidden!</title>"));
} }
/**
* logout.
*/
@Test(dependsOnMethods = "init")
public void logout() {
final MockHttpServletRequest request = mockRequest();
request.setRequestURI("/logout");
final MockHttpServletResponse response = mockResponse();
mockDispatcherServletService(request, response);
final List<Cookie> cookies = response.cookies();
Assert.assertEquals(cookies.size(), 1);
Assert.assertEquals(cookies.get(0).getName(), Solos.COOKIE_NAME);
Assert.assertNull(cookies.get(0).getValue());
}
} }
/*
* 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.processor;
import org.apache.commons.lang.StringUtils;
import org.b3log.solo.AbstractTestCase;
import org.b3log.solo.MockHttpServletRequest;
import org.b3log.solo.MockHttpServletResponse;
import org.b3log.solo.util.Solos;
import org.testng.Assert;
import org.testng.annotations.Test;
import javax.servlet.http.Cookie;
import java.util.List;
/**
* {@link LoginProcessor} test case.
*
* @author <a href="http://88250.b3log.org">Liang Ding</a>
* @version 1.0.1.1, Jan 24, 2019
* @since 1.7.0
*/
@Test(suiteName = "processor")
public class LoginProcessorTestCase extends AbstractTestCase {
/**
* Init.
*
* @throws Exception exception
*/
@Test
public void init() throws Exception {
super.init();
}
/**
* showLogin.
*/
@Test(dependsOnMethods = "init")
public void showLogin() {
final MockHttpServletRequest request = mockRequest();
request.setRequestURI("/login");
final MockHttpServletResponse response = mockResponse();
mockDispatcherServletService(request, response);
final String content = response.body();
Assert.assertTrue(StringUtils.contains(content, "<title>Admin 的个人博客 - 登录</title>"));
}
/**
* logout.
*/
@Test(dependsOnMethods = "init")
public void logout() {
final MockHttpServletRequest request = mockRequest();
request.setRequestURI("/logout");
final MockHttpServletResponse response = mockResponse();
mockDispatcherServletService(request, response);
final List<Cookie> cookies = response.cookies();
Assert.assertEquals(cookies.size(), 1);
Assert.assertEquals(cookies.get(0).getName(), Solos.COOKIE_NAME);
Assert.assertNull(cookies.get(0).getValue());
}
}
This diff is collapsed.
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