Skip to content

Commit

Permalink
[FIXED JENKINS-8815] Fixed issue where CLI required giving Overall re…
Browse files Browse the repository at this point in the history
…ad permission to anonymous.

Added test unit.
  • Loading branch information
christ66 committed Nov 9, 2013
1 parent d183345 commit a2ff610
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/main/java/hudson/cli/CLIAction.java
Expand Up @@ -31,6 +31,7 @@
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletResponse;

import hudson.model.UnprotectedRootAction;
import jenkins.model.Jenkins;

import org.kohsuke.accmod.Restricted;
Expand All @@ -40,15 +41,14 @@

import hudson.Extension;
import hudson.model.FullDuplexHttpChannel;
import hudson.model.RootAction;
import hudson.remoting.Channel;

/**
* @author ogondza
*/
@Extension
@Restricted(NoExternalUse.class)
public class CLIAction implements RootAction {
public class CLIAction implements UnprotectedRootAction {

private transient final Map<UUID,FullDuplexHttpChannel> duplexChannels = new HashMap<UUID, FullDuplexHttpChannel>();

Expand Down
45 changes: 45 additions & 0 deletions test/src/test/java/hudson/cli/CLIActionTest.java
@@ -0,0 +1,45 @@
/*
* The MIT License
*
* Copyright (c) 2013 christ66
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/

package hudson.cli;

import hudson.security.FullControlOnceLoggedInAuthorizationStrategy;
import org.jvnet.hudson.test.HudsonTestCase;

/**
* A Test unit to verify that CLIAction has .

This comment has been minimized.

Copy link
@daniel-beck

daniel-beck Jan 18, 2014

Member

…has what?

This comment has been minimized.

Copy link
@olivergondza

olivergondza Jan 18, 2014

Member

Comment deleted altogether when moved to different class (d513253).

*
* @author christ66
*/
public class CLIActionTest extends HudsonTestCase {
public void testCliActionUnprotectedRootActionTest() throws Exception {
WebClient wc = createWebClient();
wc.goTo("cli"); // Verify user can see cli before security

jenkins.setSecurityRealm(createDummySecurityRealm());
jenkins.setAuthorizationStrategy(new FullControlOnceLoggedInAuthorizationStrategy());

wc.goTo("cli"); // and after security enabled.
}
}

0 comments on commit a2ff610

Please sign in to comment.