gr.upatras.ece.nam.baker.InstalledServiceTest.java Source code

Java tutorial

Introduction

Here is the source code for gr.upatras.ece.nam.baker.InstalledServiceTest.java

Source

/**
 * Copyright 2014 University of Patras 
 * 
 * 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 gr.upatras.ece.nam.baker;

import static org.junit.Assert.*;

import java.util.UUID;

import gr.upatras.ece.nam.baker.model.InstalledBun;
import gr.upatras.ece.nam.baker.model.InstalledBunStatus;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.junit.Test;

public class InstalledServiceTest {

    private static final transient Log logger = LogFactory.getLog(InstalledServiceTest.class.getName());

    @Test
    public void testGetUuid() {
        InstalledBun is = installedServiceInit();
        assertNotNull(is.getUuid());
    }

    @Test
    public void testSetUuid() {
        InstalledBun is = installedServiceInit();
        UUID uuid = UUID.randomUUID();
        is.setUuid(uuid.toString());
        assertEquals(uuid.toString(), is.getUuid());

    }

    @Test
    public void testGetRepoUrl() {
        InstalledBun is = installedServiceInit();
        assertNotNull(is.getRepoUrl());

    }

    @Test
    public void testSetRepoUrl() {
        InstalledBun is = installedServiceInit();
        String url = "testurl";
        is.setRepoUrl(url);
        assertEquals(url, is.getRepoUrl());
    }

    @Test
    public void testGetInstalledVersion() {
        InstalledBun is = installedServiceInit();
        assertNotNull(is.getInstalledVersion());
    }

    @Test
    public void testSetInstalledVersion() {
        InstalledBun is = installedServiceInit();
        String version = "2.2vv2";
        is.setInstalledVersion(version);
        assertEquals(version, is.getInstalledVersion());
    }

    @Test
    public void testSetStatus() {
        InstalledBun is = installedServiceInit();

        is.setStatus(InstalledBunStatus.INSTALLING);
        assertEquals(InstalledBunStatus.INSTALLING, is.getStatus());
    }

    //helpers
    private InstalledBun installedServiceInit() {
        UUID uuid = UUID.randomUUID();
        String repoUrl = "repourl";
        InstalledBun is = new InstalledBun(uuid.toString(), repoUrl);
        is.setInstalledVersion("1.1v");
        return is;
    }

}