~james-page/ubuntu/precise/jenkins/954960-1.424.6

« back to all changes in this revision

Viewing changes to test/src/main/java/org/jvnet/hudson/test/ComputerConnectorTester.java

  • Committer: Package Import Robot
  • Author(s): James Page, James Page, Damien Raude-Morvan
  • Date: 2012-01-14 18:41:37 UTC
  • mfrom: (1.1.3) (5.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20120114184137-1pxuj76htdqukbia
Tags: 1.409.3+dfsg-2
[ James Page ]
* http://www.cloudbees.com/jenkins-advisory/jenkins-security-advisory-2012-01-10.cb
  - Rebuild to pickup new versions of jenkins-winstone (>= 0.9.10-jenkins-31)
    and jenkins-executable-war (>= 1.25) to fix Hash DoS vulnerability in
    jenkins when running standalone.

[ Damien Raude-Morvan ]
* Add DM-Upload-Allowed flag for James Page.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * The MIT License
3
 
 *
4
 
 * Copyright (c) 2010, InfraDNA, Inc.
5
 
 *
6
 
 * Permission is hereby granted, free of charge, to any person obtaining a copy
7
 
 * of this software and associated documentation files (the "Software"), to deal
8
 
 * in the Software without restriction, including without limitation the rights
9
 
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
 
 * copies of the Software, and to permit persons to whom the Software is
11
 
 * furnished to do so, subject to the following conditions:
12
 
 *
13
 
 * The above copyright notice and this permission notice shall be included in
14
 
 * all copies or substantial portions of the Software.
15
 
 *
16
 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
 
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
 
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
 
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
 
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
 
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22
 
 * THE SOFTWARE.
23
 
 */
24
 
package org.jvnet.hudson.test;
25
 
 
26
 
import hudson.Extension;
27
 
import hudson.model.AbstractDescribableImpl;
28
 
import hudson.model.Descriptor;
29
 
import hudson.slaves.ComputerConnector;
30
 
import hudson.slaves.ComputerConnectorDescriptor;
31
 
import org.kohsuke.stapler.StaplerRequest;
32
 
 
33
 
import javax.servlet.ServletException;
34
 
import java.io.IOException;
35
 
import java.util.List;
36
 
 
37
 
/**
38
 
 * Test bed to verify the configuration roundtripness of the {@link ComputerConnector}.
39
 
 *
40
 
 * @author Kohsuke Kawaguchi
41
 
 * @see HudsonTestCase#computerConnectorTester
42
 
 */
43
 
public class ComputerConnectorTester extends AbstractDescribableImpl<ComputerConnectorTester> {
44
 
    public final HudsonTestCase testCase;
45
 
    public ComputerConnector connector;
46
 
 
47
 
    public ComputerConnectorTester(HudsonTestCase testCase) {
48
 
        this.testCase = testCase;
49
 
    }
50
 
 
51
 
    public void doConfigSubmit(StaplerRequest req) throws IOException, ServletException {
52
 
        connector = req.bindJSON(ComputerConnector.class, req.getSubmittedForm().getJSONObject("connector"));
53
 
    }
54
 
 
55
 
    public List getConnectorDescriptors() {
56
 
        return ComputerConnectorDescriptor.all();
57
 
    }
58
 
    
59
 
    @Extension
60
 
    public static class DescriptorImpl extends Descriptor<ComputerConnectorTester> {
61
 
        @Override
62
 
        public String getDisplayName() {
63
 
            return "";
64
 
        }
65
 
    }
66
 
}