Package org.hyperic.sigar.win32.test

Source Code of org.hyperic.sigar.win32.test.TestService

/*
* Copyright (c) 2006, 2008 Hyperic, Inc.
*
* Licensed 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.hyperic.sigar.win32.test;

import java.util.List;

import org.hyperic.sigar.Sigar;
import org.hyperic.sigar.test.SigarTestCase;

import org.hyperic.sigar.win32.Service;
import org.hyperic.sigar.win32.ServiceConfig;
import org.hyperic.sigar.win32.Win32Exception;

public class TestService extends SigarTestCase {
    private static final String EVENTLOG_NAME = "Eventlog";
    private static final String TEST_NAME = "MyTestService";

    private static final String PREFIX =
        "sigar.test.service.";
   
    private static final boolean TEST_CREATE =
        "true".equals(System.getProperty(PREFIX + "create"));

    private static final boolean TEST_DELETE =
        "true".equals(System.getProperty(PREFIX + "delete"));
   
    public TestService(String name) {
        super(name);
    }

    public void testServiceOpen() throws Exception {
        Service service = new Service(EVENTLOG_NAME);
        service.getConfig();
        service.close();
       
        String dummyName = "DOESNOTEXIST";
        try {
            new Service(dummyName);
            assertTrue(false);
        } catch (Win32Exception e) {
            traceln(dummyName + ": " + e.getMessage());
            assertTrue(true);
        }
    }

    public void testServiceNames() throws Exception {
        List services = Service.getServiceNames();
        assertGtZeroTrace("getServiceNames", services.size());

        final String[] ptql = {
            "Service.Name.ct=Ev",
            "Service.Path.ew=.exe",
        };

        for (int i=0; i<ptql.length; i++) {
            services = Service.getServiceNames(getSigar(), ptql[i]);
            assertGtZeroTrace(ptql[i], services.size());
        }

        final String[] invalid = {
            "State.Name.ct=Ev",
            "Service.Invalid.ew=.exe",
            "-"
        };

        for (int i=0; i<invalid.length; i++) {
            try {
                services = Service.getServiceNames(getSigar(), invalid[i]);
                fail("'" + invalid[i] + "' did not throw Exception");
            } catch (Exception e) {
                //expected
            }
        }
    }

    public void testServiceConfig() throws Exception {
        List configs =
            Service.getServiceConfigs(getSigar(), "svchost.exe");
        assertGtZeroTrace("getServiceConfigs", configs.size());
    }

    private boolean contains(List list, String match) {
        match = match.toLowerCase();
        for (int i=0; i<list.size(); i++) {
            String name = (String)list.get(i);
            if (name.toLowerCase().equals(match)) {
                return true;
            }
        }
        return false;
    }

    public void testServicePtql() throws Exception {
        Sigar sigar = new Sigar();
        try {
            long pid = sigar.getServicePid(EVENTLOG_NAME);
            String ptql = "Service.Pid.eq=" + pid;
            List names = Service.getServiceNames(sigar, ptql);
            traceln(ptql + "==" + names);
            //different case between XP (Eventlog) and 2008 (EventLog)
            assertTrue(contains(names, EVENTLOG_NAME));
        } finally {
            sigar.close();
        }
    }

    public void testServiceCreateDelete() throws Exception {
        if (!TEST_CREATE) {
            return;
        }
        ServiceConfig config = new ServiceConfig(TEST_NAME);
        config.setStartType(ServiceConfig.START_MANUAL);
        config.setDisplayName("My Test Service");
        config.setDescription("A Description of " + config.getDisplayName());
        config.setPath("C:\\Program Files\\My Test 1.0\\mytest.exe");

        Service.create(config);
    }

    public void testDeleteService() throws Exception {
        if (!TEST_DELETE) {
            return;
        }
        Service service = new Service(TEST_NAME);
        service.delete();
    }
}
TOP

Related Classes of org.hyperic.sigar.win32.test.TestService

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.