Coverage Report - com.jcabi.github.mock.MkUsers
 
Classes in this File Line Coverage Branch Coverage Complexity
MkUsers
60%
9/15
0%
0/20
1.5
MkUsers$1
0%
0/2
N/A
1.5
MkUsers$AjcClosure1
0%
0/1
N/A
1.5
MkUsers$AjcClosure3
100%
1/1
N/A
1.5
MkUsers$AjcClosure5
100%
1/1
N/A
1.5
MkUsers$AjcClosure7
0%
0/1
N/A
1.5
 
 1  12
 /**
 2  
  * Copyright (c) 2013-2017, jcabi.com
 3  
  * All rights reserved.
 4  
  *
 5  
  * Redistribution and use in source and binary forms, with or without
 6  
  * modification, are permitted provided that the following conditions
 7  
  * are met: 1) Redistributions of source code must retain the above
 8  
  * copyright notice, this list of conditions and the following
 9  
  * disclaimer. 2) Redistributions in binary form must reproduce the above
 10  
  * copyright notice, this list of conditions and the following
 11  
  * disclaimer in the documentation and/or other materials provided
 12  
  * with the distribution. 3) Neither the name of the jcabi.com nor
 13  
  * the names of its contributors may be used to endorse or promote
 14  
  * products derived from this software without specific prior written
 15  
  * permission.
 16  
  *
 17  
  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 18  
  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT
 19  
  * NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
 20  
  * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
 21  
  * THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
 22  
  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 23  
  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 24  
  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 25  
  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 26  
  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 27  
  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
 28  
  * OF THE POSSIBILITY OF SUCH DAMAGE.
 29  
  */
 30  
 package com.jcabi.github.mock;
 31  
 
 32  
 import com.jcabi.aspects.Immutable;
 33  
 import com.jcabi.aspects.Loggable;
 34  
 import com.jcabi.github.Github;
 35  
 import com.jcabi.github.User;
 36  
 import com.jcabi.github.Users;
 37  
 import com.jcabi.xml.XML;
 38  
 import java.io.IOException;
 39  
 import lombok.EqualsAndHashCode;
 40  
 import lombok.ToString;
 41  
 import org.xembly.Directives;
 42  
 
 43  
 /**
 44  
  * Mock Github users.
 45  
  *
 46  
  * @author Yegor Bugayenko (yegor@tpc2.com)
 47  
  * @version $Id: 01bab190ac11e04dbb8fa28f7ce76bb1333e003f $
 48  
  * @since 0.5
 49  
  */
 50  
 @Immutable
 51  
 @Loggable(Loggable.DEBUG)
 52  0
 @ToString
 53  0
 @EqualsAndHashCode(of = { "storage", "himself" })
 54  
 final class MkUsers implements Users {
 55  
 
 56  
     /**
 57  
      * Storage.
 58  
      */
 59  
     private final transient MkStorage storage;
 60  
 
 61  
     /**
 62  
      * Login of the user logged in.
 63  
      */
 64  
     private final transient String himself;
 65  
 
 66  
     /**
 67  
      * Public ctor.
 68  
      * @param stg Storage
 69  
      * @param login User to login
 70  
      * @throws IOException If there is any I/O problem
 71  
      */
 72  
     MkUsers(
 73  
         final MkStorage stg,
 74  
         final String login
 75  44
     ) throws IOException {
 76  44
         this.storage = stg;
 77  44
         this.himself = login;
 78  88
         this.storage.apply(
 79  44
             new Directives().xpath("/github").addIf("users")
 80  
         );
 81  44
     }
 82  
 
 83  
     @Override
 84  
     public Github github() {
 85  0
         return new MkGithub(this.storage, this.himself);
 86  
     }
 87  
 
 88  
     @Override
 89  
     public User self() {
 90  12
         return this.get(this.himself);
 91  
     }
 92  
 
 93  
     @Override
 94  
     public User get(
 95  
         final String login
 96  
     ) {
 97  
         try {
 98  88
             return new MkUser(this.storage, login);
 99  0
         } catch (final IOException ex) {
 100  0
             throw new IllegalStateException(ex);
 101  
         }
 102  
     }
 103  
 
 104  
     @Override
 105  
     public Iterable<User> iterate(
 106  
         final String identifier
 107  
     ) {
 108  0
         return new MkIterable<User>(
 109  
             this.storage,
 110  
             "/github/users/user",
 111  0
             new MkIterable.Mapping<User>() {
 112  
                 @Override
 113  
                 public User map(final XML xml) {
 114  0
                     return MkUsers.this.get(xml.xpath("login/text()").get(0));
 115  
                 }
 116  
             }
 117  
         );
 118  
     }
 119  
 
 120  
 }