blob: 5e53421ef5248836584724f4e18dacb3cc37722d [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.ftpserver.usermanager.impl;
import java.util.ArrayList;
import java.util.List;
import org.apache.ftpserver.ftplet.Authority;
import org.apache.ftpserver.ftplet.FtpException;
import org.apache.ftpserver.usermanager.ClearTextPasswordEncryptor;
import org.apache.ftpserver.usermanager.PropertiesUserManagerFactory;
import org.apache.ftpserver.usermanager.UserManagerFactory;
/**
*
* @author <a href="http://mina.apache.org">Apache MINA Project</a>
*
*/
public class VolatilePropertiesUserManagerTest extends UserManagerTestTemplate {
@Override
protected UserManagerFactory createUserManagerFactory() throws FtpException {
PropertiesUserManagerFactory um = new PropertiesUserManagerFactory();
// set to null should make the user manager volatile, e.g. not use a file
um.setFile(null);
um.setPasswordEncryptor(new ClearTextPasswordEncryptor());
return um;
}
@Override
protected void setUp() throws Exception {
super.setUp();
BaseUser user1 = new BaseUser();
user1.setName("user1");
user1.setPassword("pw1");
user1.setHomeDirectory("home");
userManager.save(user1);
BaseUser user2 = new BaseUser();
user2.setName("user2");
user2.setPassword("pw2");
user2.setHomeDirectory("home");
user2.setEnabled(false);
user2.setMaxIdleTime(2);
List<Authority> authorities = new ArrayList<>();
authorities.add(new WritePermission());
authorities.add(new TransferRatePermission(1, 5));
authorities.add(new ConcurrentLoginPermission(3, 4));
user2.setAuthorities(authorities);
userManager.save(user2);
BaseUser user3 = new BaseUser();
user3.setName("user3");
user3.setPassword("");
user3.setHomeDirectory("home");
userManager.save(user3);
}
// we do not save persistent in this case so this test is disabled
@Override
public void testSavePersistent() {
}
}