001package org.apache.maven.wagon.providers.ssh; 002 003/* 004 * Licensed to the Apache Software Foundation (ASF) under one 005 * or more contributor license agreements. See the NOTICE file 006 * distributed with this work for additional information 007 * regarding copyright ownership. The ASF licenses this file 008 * to you under the Apache License, Version 2.0 (the 009 * "License"); you may not use this file except in compliance 010 * with the License. You may obtain a copy of the License at 011 * 012 * http://www.apache.org/licenses/LICENSE-2.0 013 * 014 * Unless required by applicable law or agreed to in writing, 015 * software distributed under the License is distributed on an 016 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 017 * KIND, either express or implied. See the License for the 018 * specific language governing permissions and limitations 019 * under the License. 020 */ 021 022import org.apache.sshd.server.PasswordAuthenticator; 023import org.apache.sshd.server.session.ServerSession; 024import org.codehaus.plexus.util.StringUtils; 025 026import java.util.ArrayList; 027import java.util.List; 028 029/** 030 * @author Olivier Lamy 031 */ 032public class TestPasswordAuthenticator 033 implements PasswordAuthenticator 034{ 035 List<PasswordAuthenticatorRequest> requests = 036 new ArrayList<PasswordAuthenticatorRequest>(); 037 038 public boolean authenticate( String username, String password, ServerSession session ) 039 { 040 requests.add( new PasswordAuthenticatorRequest( username, password ) ); 041 return StringUtils.equals( username, TestData.getUserName() ) 042 && StringUtils.equals( password, TestData.getUserPassword() ); 043 } 044 045 /** 046 * 047 */ 048 public static class PasswordAuthenticatorRequest 049 { 050 private String username; 051 052 private String password; 053 054 public PasswordAuthenticatorRequest( String username, String password ) 055 { 056 this.username = username; 057 this.password = password; 058 } 059 060 @Override 061 public String toString() 062 { 063 final StringBuilder sb = new StringBuilder(); 064 sb.append( "PasswordAuthenticatorRequest" ); 065 sb.append( "{username='" ).append( username ).append( '\'' ); 066 sb.append( ", password='" ).append( password ).append( '\'' ); 067 sb.append( '}' ); 068 return sb.toString(); 069 } 070 071 public String getUsername() 072 { 073 return username; 074 } 075 076 public String getPassword() 077 { 078 return password; 079 } 080 } 081}