Coverage Report - org.apache.maven.wagon.providers.ssh.knownhost.StreamKnownHostsProvider
 
Classes in this File Line Coverage Branch Coverage Complexity
StreamKnownHostsProvider
0% 
N/A 
1
 
 1  
 package org.apache.maven.wagon.providers.ssh.knownhost;
 2  
 
 3  
 /*
 4  
  * Copyright 2001-2005 The Apache Software Foundation.
 5  
  *
 6  
  * Licensed under the Apache License, Version 2.0 (the "License");
 7  
  * you may not use this file except in compliance with the License.
 8  
  * You may obtain a copy of the License at
 9  
  *
 10  
  *      http://www.apache.org/licenses/LICENSE-2.0
 11  
  *
 12  
  * Unless required by applicable law or agreed to in writing, software
 13  
  * distributed under the License is distributed on an "AS IS" BASIS,
 14  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 15  
  * See the License for the specific language governing permissions and
 16  
  * limitations under the License.
 17  
  */
 18  
 
 19  
 import com.jcraft.jsch.JSch;
 20  
 import com.jcraft.jsch.JSchException;
 21  
 import com.jcraft.jsch.UserInfo;
 22  
 import org.codehaus.plexus.util.IOUtil;
 23  
 import org.codehaus.plexus.util.StringOutputStream;
 24  
 import org.codehaus.plexus.util.StringInputStream;
 25  
 
 26  
 import java.io.InputStream;
 27  
 import java.io.IOException;
 28  
 
 29  
 /**
 30  
  * Provides known hosts from a file
 31  
  *
 32  
  * @author Juan F. Codagnone
 33  
  * @since Sep 12, 2005
 34  
  */
 35  
 public class StreamKnownHostsProvider
 36  
     extends AbstractKnownHostsProvider
 37  
 {
 38  
     /**
 39  
      * the known hosts, in the openssh format
 40  
      */
 41  
     private final String contents;
 42  
 
 43  
     public StreamKnownHostsProvider( InputStream stream )
 44  
         throws IOException
 45  0
     {
 46  
         try
 47  
         {
 48  0
             StringOutputStream stringOutputStream = new StringOutputStream();
 49  0
             IOUtil.copy( stream, stringOutputStream );
 50  0
             this.contents = stringOutputStream.toString();
 51  
         }
 52  
         finally
 53  
         {
 54  0
             IOUtil.close( stream );
 55  0
         }
 56  0
     }
 57  
 
 58  
     /**
 59  
      * @see KnownHostsProvider#addKnownHosts(com.jcraft.jsch.JSch, UserInfo)
 60  
      */
 61  
     public void addKnownHosts( JSch sch, UserInfo userInfo )
 62  
         throws JSchException
 63  
     {
 64  0
         sch.setKnownHosts( new StringInputStream( contents ) );
 65  0
     }
 66  
 }