Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.commons.text.StringEscapeUtils;
import org.apache.roller.weblogger.config.WebloggerConfig;
import org.apache.roller.weblogger.util.I18nMessages;
import org.springframework.util.StringUtils;
Expand Down Expand Up @@ -84,14 +85,14 @@ public String getHtml(HttpServletRequest request) {
sb.append("</p>");
sb.append("<p>");
sb.append("<input name=\"ldapUser\" value=\"");
sb.append(ldapUser + "\">");
sb.append(StringEscapeUtils.escapeHtml4(ldapUser)).append("\">");
sb.append("</p>");
sb.append("<p>");
sb.append(messages.getString("comments.ldapAuthenticatorPassword"));
sb.append("</p>");
sb.append("<p>");
sb.append("<input type=\"password\" name=\"ldapPass\" value=\"");
sb.append(ldapPass + "\">");
sb.append(StringEscapeUtils.escapeHtml4(ldapPass)).append("\">");
sb.append("</p>");

return sb.toString();
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.apache.roller.weblogger.ui.rendering.plugins.comments;

import java.util.Locale;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpSession;
import org.junit.jupiter.api.Test;
import org.mockito.MockedStatic;

import static org.junit.jupiter.api.Assertions.assertTrue;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.mockStatic;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;

class LdapCommentAuthenticatorTest {

@Test
void rendersEmptyFieldsOnFirstVisit() {
HttpServletRequest request = mock(HttpServletRequest.class);
HttpSession session = mock(HttpSession.class);
when(request.getSession(true)).thenReturn(session);
String html = render(request);
assertFields(html, "", "");
verify(session).setAttribute("ldapUser", "");
verify(session).setAttribute("ldapPass", "");
}

@Test
void rendersMissingValuesAsEmpty() {
assertFields(renderReturningVisit(null, null), "", "");
}

@Test
void preservesOrdinaryFormValues() {
assertFields(renderReturningVisit("reader", "sample-pass"), "reader", "sample-pass");
}

@Test
void formatsPunctuationInFormValues() {
String value = "A&B \"quoted\" <label> 'name'";
String formatted = "A&amp;B &quot;quoted&quot; &lt;label&gt; 'name'";
assertFields(renderReturningVisit(value, value), formatted, formatted);
}

@Test
void preservesLiteralEntityText() {
assertFields(renderReturningVisit("&quot;", "&#34;"), "&amp;quot;", "&amp;#34;");
}

private String renderReturningVisit(String user, String password) {
HttpServletRequest request = mock(HttpServletRequest.class);
HttpSession session = mock(HttpSession.class);
when(request.getSession(true)).thenReturn(session);
when(session.getAttribute("ldapUser")).thenReturn("");
when(request.getParameter("ldapUser")).thenReturn(user);
when(request.getParameter("ldapPass")).thenReturn(password);
return render(request);
}

private String render(HttpServletRequest request) {
try (MockedStatic<CommentAuthenticatorUtils> locales = mockStatic(CommentAuthenticatorUtils.class)) {
locales.when(() -> CommentAuthenticatorUtils.getLocale(request)).thenReturn(Locale.ENGLISH);
return new LdapCommentAuthenticator().getHtml(request);
}
}

private void assertFields(String html, String user, String password) {
assertTrue(html.contains("<input name=\"ldapUser\" value=\"" + user + "\">"));
assertTrue(html.contains("<input type=\"password\" name=\"ldapPass\" value=\"" + password + "\">"));
}
}
Loading