Package com.jitlogic.zorka.core.test.integ

Source Code of com.jitlogic.zorka.core.test.integ.NrpeAgentIntegTest

/**
* Copyright 2012-2014 Rafal Lewczuk <rafal.lewczuk@jitlogic.com>
* <p/>
* This is free software. You can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option) any later
* version.
* <p/>
* This software 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 General Public License for more details.
* <p/>
* You should have received a copy of the GNU General Public License
* along with this software. If not, see <http://www.gnu.org/licenses/>.
*/
package com.jitlogic.zorka.core.test.integ;

import com.jitlogic.zorka.core.test.support.ZorkaFixture;
import com.jitlogic.zorka.core.integ.NagiosAgent;

import com.jitlogic.zorka.core.integ.NrpePacket;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;

import java.net.Socket;

import static org.junit.Assert.*;

public class NrpeAgentIntegTest extends ZorkaFixture {

    private NagiosAgent nagiosAgent;

    @Before
    public void setUp() {
        nagiosAgent = new NagiosAgent(config,  zorkaAgent, translator);
        nagiosAgent.start();
    }

    @After
    public void tearDown() {
        nagiosAgent.stop();
    }

    @Test
    public void testTrivialRequest() throws Exception {
        assertEquals(configProperties.getProperty("zorka.version"), query("zorka.version[]"));
    }


    private String query(String query) throws Exception{
        Socket client = new Socket("127.0.0.1", 5669);

        NrpePacket request = NrpePacket.newInstance(2, NrpePacket.QUERY_PACKET, 3, "zorka.version[]");
        request.encode(client.getOutputStream());
        client.getOutputStream().flush();

        NrpePacket response = NrpePacket.fromStream(client.getInputStream());

        return response.getData();
    }
}
TOP

Related Classes of com.jitlogic.zorka.core.test.integ.NrpeAgentIntegTest

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.