blob: e7cf380b0a2f10e92d76092deea3d560b6af79c8 [file] [log] [blame]
/*-
* ============LICENSE_START=======================================================
* OSAM
* ================================================================================
* Copyright (C) 2018 AT&T
* ================================================================================
* 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.
* ============LICENSE_END=========================================================
*/
package org.onap.osam.aai;
import java.util.ArrayList;
import org.junit.Test;
import org.onap.osam.model.SubscriberList;
import org.onap.osam.roles.EcompRole;
import org.onap.osam.roles.Role;
import org.onap.osam.roles.RoleValidator;
public class SubscriberFilteredResultsTest {
private SubscriberFilteredResults createTestSubject() {
ArrayList<Role> list = new ArrayList<Role>();
list.add(new Role(EcompRole.READ, "a", "a", "a"));
RoleValidator rl=new RoleValidator(list);
SubscriberList sl = new SubscriberList();
sl.customer = new ArrayList<org.onap.osam.model.Subscriber>();
sl.customer.add(new org.onap.osam.model.Subscriber());
return new SubscriberFilteredResults(rl, sl, "OK", 200);
}
@Test
public void testGetSubscriberList() throws Exception {
SubscriberFilteredResults testSubject;
SubscriberListWithFilterData result;
// default test
testSubject = createTestSubject();
result = testSubject.getSubscriberList();
}
@Test
public void testSetSubscriberList() throws Exception {
SubscriberFilteredResults testSubject;
SubscriberListWithFilterData subscriberList = null;
// default test
testSubject = createTestSubject();
//testSubject.setSubscriberList(subscriberList);
testSubject.getSubscriberList();
}
}