Package org.candlepin.resource.test

Source Code of org.candlepin.resource.test.PersonConsumerResourceCreationTest

/**
* Copyright (c) 2009 - 2012 Red Hat, Inc.
*
* This software is licensed to you under the GNU General Public License,
* version 2 (GPLv2). There is NO WARRANTY for this software, express or
* implied, including the implied warranties of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2
* along with this software; if not, see
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
*
* Red Hat trademarks are not licensed under GPLv2. No permission is
* granted to use or replicate Red Hat trademarks that are incorporated
* in this software or its documentation.
*/
package org.candlepin.resource.test;

import static org.mockito.Mockito.*;

import org.candlepin.auth.Access;
import org.candlepin.auth.permissions.PermissionFactory.PermissionType;
import org.candlepin.common.exceptions.BadRequestException;
import org.candlepin.model.ConsumerType;
import org.candlepin.model.Owner;
import org.candlepin.model.PermissionBlueprint;
import org.candlepin.model.Role;
import org.candlepin.model.User;

import org.junit.Test;

/**
* PersonConsumerResourceCreationTest If
* ConsumerResource.CONSUMER_PERSON_NAME_PATTERN is different than
* CONSUMER_SYSTEM_NAME_PATTERN, this will need different tests.
*/
public class PersonConsumerResourceCreationTest extends
    ConsumerResourceCreationTest {
    public ConsumerType initSystem() {
        ConsumerType systemtype = new ConsumerType(
            ConsumerType.ConsumerTypeEnum.PERSON);
        // create an owner, a ownerperm, and roles for the user we prodive
        // as coming from userService
        owner = new Owner("test_owner");
        PermissionBlueprint p = new PermissionBlueprint(PermissionType.OWNER, owner,
            Access.ALL);
        User user = new User("anyuser", "");
        role = new Role();
        role.addPermission(p);
        role.addUser(user);
        when(userService.findByLogin("anyuser")).thenReturn(user);
        return systemtype;
    }


    @Test
    public void registerWithKeys() {
        // we expect a BadRequestException here
        try {
            super.registerWithKeys();
        }
        catch (BadRequestException e) {
            return;
        }
    }

    @Test
    public void passIfOnlyOneActivationKeyDoesNotExistForOrg() {
        // person consumer needs to by-pass this test.
    }
}
TOP

Related Classes of org.candlepin.resource.test.PersonConsumerResourceCreationTest

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.