Coverage Report - com.jcabi.github.mock.MkNotifications
 
Classes in this File Line Coverage Branch Coverage Complexity
MkNotifications
71%
10/14
N/A
1.833
MkNotifications$1
100%
3/3
N/A
1.833
 
 1  2
 /**
 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.github.GitHubThread;
 34  
 import com.jcabi.github.Notification;
 35  
 import com.jcabi.github.Notifications;
 36  
 import com.jcabi.xml.XML;
 37  
 import java.io.IOException;
 38  
 import org.apache.commons.lang3.NotImplementedException;
 39  
 
 40  
 /**
 41  
  * Mock for Github Notifications.
 42  
  *
 43  
  * @author Giang Le (lthuangiang@gmail.com)
 44  
  * @author Paul Polishchuk (ppol@ua.fm)
 45  
  * @author Piotr Pradzynski (prondzyn@gmail.com)
 46  
  * @version $Id: 521912115043890201b98b26746214f62a5e6338 $
 47  
  * @since 0.15
 48  
  * @see <a href="https://developer.github.com/v3/activity/notifications/">Notifications API</a>
 49  
  * @todo #913:30min Implement markAsRead() and thread() operations in
 50  
  *  MkNotifications. Don't forget about unit tests.
 51  
  */
 52  
 @Immutable
 53  
 final class MkNotifications implements Notifications {
 54  
 
 55  
     /**
 56  
      * Storage with notifications.
 57  
      */
 58  
     private final transient MkStorage storage;
 59  
     /**
 60  
      * XPath for the notifications in the storage.
 61  
      */
 62  
     private final transient String xpath;
 63  
 
 64  
     /**
 65  
      * Public ctor.
 66  
      * @param strge The mock storage of github data.
 67  
      * @param entry The xpath to the notifications in the storage.
 68  
      */
 69  6
     MkNotifications(final MkStorage strge, final String entry) {
 70  6
         this.storage = strge;
 71  6
         this.xpath = entry;
 72  6
     }
 73  
 
 74  
     @Override
 75  
     public Iterable<Notification> iterate() {
 76  2
         return new MkIterable<Notification>(
 77  
             this.storage,
 78  
             this.xpath,
 79  5
             new MkIterable.Mapping<Notification>() {
 80  
                 @Override
 81  
                 public Notification map(final XML xml) {
 82  6
                     return MkNotifications.this.get(
 83  3
                         Integer.valueOf(xml.xpath("id/text()").get(0))
 84  
                     );
 85  
                 }
 86  
             }
 87  
         );
 88  
     }
 89  
 
 90  
     @Override
 91  
     public Notification get(final int number) {
 92  
         try {
 93  9
             return new MkNotification(
 94  10
                 this.storage.xml().nodes(
 95  5
                     this.xpath.concat(String.format("[id = %s]", number))
 96  5
                 ).get(0)
 97  
             );
 98  0
         } catch (final IOException ex) {
 99  0
             throw new IllegalStateException(ex);
 100  
         }
 101  
     }
 102  
 
 103  
     @Override
 104  
     public void markAsRead() {
 105  0
         throw new NotImplementedException("MkNotifications#markAsRead");
 106  
     }
 107  
 
 108  
     @Override
 109  
     public GitHubThread thread(final int number) {
 110  0
         throw new NotImplementedException("MkNotifications#thread");
 111  
     }
 112  
 }