blob: 41bcce5dfb3e50708d3bca4dd31ea0d9f13de915 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.apache.openmeetings.test.domain;
import static org.junit.Assert.assertNotNull;
import org.apache.log4j.Logger;
import org.apache.openmeetings.db.dao.user.OrganisationDao;
import org.apache.openmeetings.db.dao.user.UserDao;
import org.apache.openmeetings.db.entity.user.Organisation;
import org.apache.openmeetings.db.entity.user.Organisation_Users;
import org.apache.openmeetings.db.entity.user.User;
import org.apache.openmeetings.test.AbstractJUnitDefaults;
import org.junit.Test;
import org.springframework.beans.factory.annotation.Autowired;
public class TestAddGroup extends AbstractJUnitDefaults {
@Autowired
private OrganisationDao orgDao;
@Autowired
private UserDao usersDao;
private static final Logger log = Logger.getLogger(TestAddGroup.class);
@Test
public void testAddingGroup() {
Organisation o = new Organisation();
o.setName("default");
o = orgDao.update(o, null);
assertNotNull("Id of organisation created should not be null", o.getOrganisation_id());
User us = usersDao.get(1L);
assertNotNull("User should exist", us);
assertNotNull("Organisation User list should exist", us.getOrganisation_users());
us.getOrganisation_users().add(new Organisation_Users(o));
us = usersDao.update(us, null);
log.error(us.getLastname());
log.error(us.getAdresses().getTown());
}
}