Package hudson.slaves

Source Code of hudson.slaves.NodePropertyTest

package hudson.slaves;

import com.gargoylesoftware.htmlunit.html.HtmlForm;
import com.gargoylesoftware.htmlunit.html.HtmlLabel;
import hudson.model.Descriptor.FormException;
import hudson.model.Slave;
import net.sf.json.JSONObject;
import org.jvnet.hudson.test.HudsonTestCase;
import org.jvnet.hudson.test.TestExtension;
import org.kohsuke.stapler.DataBoundConstructor;
import org.kohsuke.stapler.StaplerRequest;

/**
* @author Kohsuke Kawaguchi
*/
public class NodePropertyTest extends HudsonTestCase {
    public void testInvisibleProperty() throws Exception {
        DumbSlave s = createSlave();
        InvisibleProperty before = new InvisibleProperty();
        s.getNodeProperties().add(before);
        assertFalse(before.reconfigured);


        DumbSlave s2 = configRoundtrip(s);
        assertNotSame(s,s2);
        InvisibleProperty after = s2.getNodeProperties().get(InvisibleProperty.class);

        assertSame(before,after);
        assertTrue(after.reconfigured);
    }

    public static class InvisibleProperty extends NodeProperty<Slave> {
        boolean reconfigured = false;
        @Override
        public NodeProperty<?> reconfigure(StaplerRequest req, JSONObject form) throws FormException {
            reconfigured = true;
            return this;
        }

        @TestExtension
        public static class DescriptorImpl extends NodePropertyDescriptor {
            @Override
            public String getDisplayName() {
                return null;
            }
        }
    }

    public void testBasicConfigRoundtrip() throws Exception {
        DumbSlave s = createSlave();
        HtmlForm f = createWebClient().goTo("/computer/" + s.getNodeName() + "/configure").getFormByName("config");
        ((HtmlLabel)f.selectSingleNode(".//LABEL[text()='Some Property']")).click();
        submit(f);
        PropertyImpl p = hudson.getNode(s.getNodeName()).getNodeProperties().get(PropertyImpl.class);
        assertEquals("Duke",p.name);

        p.name = "Kohsuke";
        configRoundtrip(s);

        PropertyImpl p2 = hudson.getNode(s.getNodeName()).getNodeProperties().get(PropertyImpl.class);
        assertNotSame(p,p2);
        assertEqualDataBoundBeans(p,p2);
    }

    public static class PropertyImpl extends NodeProperty<Slave> {
        public String name;

        @DataBoundConstructor
        public PropertyImpl(String name) {
            this.name = name;
        }

        @TestExtension("testBasicConfigRoundtrip")
        public static class DescriptorImpl extends NodePropertyDescriptor {
            @Override
            public String getDisplayName() {
                return "Some Property";
            }
        }
    }
}
TOP

Related Classes of hudson.slaves.NodePropertyTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.
.credentials.common.StandardCertificateCredentials
  • com.cloudbees.plugins.credentials.common.StandardCredentials
  • com.cloudbees.plugins.credentials.common.StandardListBoxModel
  • com.cloudbees.plugins.credentials.domains.SchemeRequirement
  • com.cloudbees.plugins.credentials.impl.CertificateCredentialsImpl
  • com.cloudbees.plugins.credentials.impl.UsernamePasswordCredentialsImpl
  • com.sonyericsson.hudson.plugins.gerrit.trigger.config.ReplicationConfig
  • com.sonyericsson.hudson.plugins.gerrit.trigger.GerritServer
  • TOP
    Copyright © 2018 www.massapi.com. All rights reserved.
    All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.