Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: ee5fe636e6506c1bc051278f1f4adca3f0bdb45d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/*******************************************************************************
 * Copyright (c) 2007, 2009 Red Hat, Inc.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Red Hat - initial API and implementation
 *******************************************************************************/
package org.eclipse.linuxtools.rpm.core.tests;

import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;

import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.IWorkspace;
import org.eclipse.core.resources.IWorkspaceDescription;
import org.eclipse.core.resources.IWorkspaceRoot;
import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.linuxtools.rpm.core.IRPMConstants;
import org.eclipse.linuxtools.rpm.core.RPMProjectNature;
import org.junit.BeforeClass;
import org.junit.Test;

public class RPMProjectNatureTest {

    static IWorkspace workspace;
    static IWorkspaceRoot root;
    static NullProgressMonitor monitor;

    @BeforeClass
    public static void setUp() throws Exception {
        IWorkspaceDescription desc;
        workspace = ResourcesPlugin.getWorkspace();
        if (workspace == null) {
            fail("Workspace was not setup");
        }
        root = workspace.getRoot();
        monitor = new NullProgressMonitor();
        if (root == null) {
            fail("Workspace root was not setup");
        }
        desc = workspace.getDescription();
        desc.setAutoBuilding(false);
        workspace.setDescription(desc);
    }

    @Test
    public void testAddRPMProjectNature() throws Exception {
        IProject testProject = root.getProject("testProject");
        testProject.create(monitor);
        testProject.open(monitor);
        RPMProjectNature.addRPMNature(testProject, monitor);
        assertTrue(testProject.hasNature(IRPMConstants.RPM_NATURE_ID));
        testProject.delete(true, false, monitor);
    }

}

Back to the top