Coverage Report - com.jcabi.github.mock.MkRelease
 
Classes in this File Line Coverage Branch Coverage Complexity
MkRelease
79%
19/24
31%
7/22
1.375
MkRelease$AjcClosure1
0%
0/1
N/A
1.375
MkRelease$AjcClosure11
100%
1/1
N/A
1.375
MkRelease$AjcClosure3
0%
0/1
N/A
1.375
MkRelease$AjcClosure5
100%
1/1
N/A
1.375
MkRelease$AjcClosure7
100%
1/1
N/A
1.375
MkRelease$AjcClosure9
100%
1/1
N/A
1.375
 
 1  0
 /**
 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.Coordinates;
 35  
 import com.jcabi.github.Release;
 36  
 import com.jcabi.github.ReleaseAssets;
 37  
 import com.jcabi.github.Repo;
 38  
 import java.io.IOException;
 39  
 import javax.json.JsonObject;
 40  
 import lombok.EqualsAndHashCode;
 41  
 import lombok.ToString;
 42  
 import org.xembly.Directives;
 43  
 
 44  
 /**
 45  
  * Mock Github release.
 46  
  * @author Alexander Sinyagin (sinyagin.alexander@gmail.com)
 47  
  * @version $Id: b3fd040f6cec45dcacff0164438c170acd10b80f $
 48  
  */
 49  
 @Immutable
 50  
 @Loggable(Loggable.DEBUG)
 51  0
 @ToString
 52  2
 @EqualsAndHashCode(of = { "storage", "coords", "release" })
 53  
 final class MkRelease implements Release {
 54  
 
 55  
     /**
 56  
      * Storage.
 57  
      */
 58  
     private final transient MkStorage storage;
 59  
 
 60  
     /**
 61  
      * Login of the user logged in.
 62  
      */
 63  
     private final transient String self;
 64  
 
 65  
     /**
 66  
      * Repository coordinates.
 67  
      */
 68  
     private final transient Coordinates coords;
 69  
 
 70  
     /**
 71  
      * Release id.
 72  
      */
 73  
     private final transient int release;
 74  
 
 75  
     /**
 76  
      * Public ctor.
 77  
      * @param stg Storage
 78  
      * @param login User to login
 79  
      * @param rep Repo
 80  
      * @param number Release ID
 81  
      * @checkstyle ParameterNumber (5 lines)
 82  
      */
 83  
     MkRelease(
 84  
         final MkStorage stg,
 85  
         final String login,
 86  
         final Coordinates rep,
 87  
         final int number
 88  46
     ) {
 89  46
         this.storage = stg;
 90  46
         this.self = login;
 91  46
         this.coords = rep;
 92  46
         this.release = number;
 93  46
     }
 94  
 
 95  
     @Override
 96  
     public int number() {
 97  0
         return this.release;
 98  
     }
 99  
 
 100  
     @Override
 101  
     public Repo repo() {
 102  0
         return new MkRepo(this.storage, this.self, this.coords);
 103  
     }
 104  
 
 105  
     @Override
 106  
     public ReleaseAssets assets() {
 107  
         try {
 108  24
             return new MkReleaseAssets(
 109  
                 this.storage,
 110  
                 this.self,
 111  
                 this.coords,
 112  
                 this.release
 113  
             );
 114  0
         } catch (final IOException ex) {
 115  0
             throw new IllegalStateException(ex);
 116  
         }
 117  
     }
 118  
 
 119  
     @Override
 120  
     public JsonObject json() throws IOException {
 121  90
         return new JsonNode(
 122  30
             this.storage.xml().nodes(this.xpath()).get(0)
 123  30
         ).json();
 124  
     }
 125  
 
 126  
     @Override
 127  
     public void patch(
 128  
         final JsonObject json
 129  
     ) throws IOException {
 130  2
         new JsonPatch(this.storage).patch(this.xpath(), json);
 131  1
     }
 132  
 
 133  
     @Override
 134  
     public void delete() throws IOException {
 135  3
         this.storage.apply(
 136  1
             new Directives().xpath(this.xpath()).strict(1).remove()
 137  
         );
 138  1
     }
 139  
 
 140  
     /**
 141  
      * XPath of this element in XML tree.
 142  
      * @return XPath
 143  
      */
 144  
     private String xpath() {
 145  64
         return String.format(
 146  
             "/github/repos/repo[@coords='%s']/releases/release[id='%d']",
 147  32
             this.coords, this.release
 148  
         );
 149  
     }
 150  
 
 151  
 }