Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
MkPublicKey |
|
| 1.5;1.5 | ||||
MkPublicKey$AjcClosure1 |
|
| 1.5;1.5 | ||||
MkPublicKey$AjcClosure3 |
|
| 1.5;1.5 | ||||
MkPublicKey$AjcClosure5 |
|
| 1.5;1.5 | ||||
MkPublicKey$AjcClosure7 |
|
| 1.5;1.5 |
1 | 4 | /** |
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.PublicKey; | |
35 | import com.jcabi.github.User; | |
36 | import java.io.IOException; | |
37 | import javax.json.JsonObject; | |
38 | import lombok.EqualsAndHashCode; | |
39 | import lombok.ToString; | |
40 | ||
41 | /** | |
42 | * Mock Github public key. | |
43 | * @author Carlos Miranda (miranda.cma@gmail.com) | |
44 | * @version $Id: 15841354ab1fdff42f395ad3fd9696e251107912 $ | |
45 | */ | |
46 | @Immutable | |
47 | @Loggable(Loggable.DEBUG) | |
48 | 0 | @ToString |
49 | 3 | @EqualsAndHashCode(of = { "storage", "self", "num" }) |
50 | final class MkPublicKey implements PublicKey { | |
51 | /** | |
52 | * Storage. | |
53 | */ | |
54 | private final transient MkStorage storage; | |
55 | ||
56 | /** | |
57 | * Login of the user logged in. | |
58 | */ | |
59 | private final transient String self; | |
60 | ||
61 | /** | |
62 | * Issue number. | |
63 | */ | |
64 | private final transient int num; | |
65 | ||
66 | /** | |
67 | * Public ctor. | |
68 | * @param stg Storage | |
69 | * @param login User to login | |
70 | * @param number Key number | |
71 | */ | |
72 | MkPublicKey( | |
73 | final MkStorage stg, | |
74 | final String login, | |
75 | final int number | |
76 | 9 | ) { |
77 | 9 | this.storage = stg; |
78 | 9 | this.self = login; |
79 | 9 | this.num = number; |
80 | 9 | } |
81 | ||
82 | @Override | |
83 | public JsonObject json() throws IOException { | |
84 | 6 | return new JsonNode( |
85 | 2 | this.storage.xml().nodes(this.xpath()).get(0) |
86 | 2 | ).json(); |
87 | } | |
88 | ||
89 | @Override | |
90 | public void patch( | |
91 | final JsonObject json | |
92 | ) throws IOException { | |
93 | 2 | new JsonPatch(this.storage).patch(this.xpath(), json); |
94 | 1 | } |
95 | ||
96 | @Override | |
97 | public User user() { | |
98 | try { | |
99 | 0 | return new MkUser(this.storage, this.self); |
100 | 0 | } catch (final IOException ex) { |
101 | 0 | throw new IllegalStateException(ex); |
102 | } | |
103 | } | |
104 | ||
105 | @Override | |
106 | public int number() { | |
107 | 4 | return this.num; |
108 | } | |
109 | ||
110 | /** | |
111 | * XPath of this element in XML tree. | |
112 | * | |
113 | * @return XPath | |
114 | */ | |
115 | private String xpath() { | |
116 | 6 | return String.format( |
117 | "/github/users/user[login='%s']/keys/key[id='%d']", | |
118 | this.self, | |
119 | 3 | this.num |
120 | ); | |
121 | } | |
122 | } |