View Javadoc

1   /*
2    * Grapht, an open source dependency injector.
3    * Copyright 2014-2015 various contributors (see CONTRIBUTORS.txt)
4    * Copyright 2010-2014 Regents of the University of Minnesota
5    *
6    * This program is free software; you can redistribute it and/or modify
7    * it under the terms of the GNU Lesser General Public License as
8    * published by the Free Software Foundation; either version 2.1 of the
9    * License, or (at your option) any later version.
10   *
11   * This program is distributed in the hope that it will be useful, but WITHOUT
12   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13   * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
14   * details.
15   *
16   * You should have received a copy of the GNU General Public License along with
17   * this program; if not, write to the Free Software Foundation, Inc., 51
18   * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19   */
20  package org.grouplens.grapht.solver;
21  
22  import org.grouplens.grapht.reflect.Desire;
23  import org.grouplens.grapht.reflect.MockDesire;
24  import org.junit.Test;
25  
26  import java.io.FileInputStream;
27  import java.io.InputStream;
28  import java.util.List;
29  
30  import static org.hamcrest.Matchers.*;
31  import static org.junit.Assert.assertThat;
32  
33  /**
34   * @author <a href="http://www.grouplens.org">GroupLens Research</a>
35   */
36  public class DesireChainTest {
37      @Test
38      public void testSingleDesire() {
39          Desire desire = new MockDesire(String.class, null, null);
40          DesireChain chain = DesireChain.singleton(desire);
41          assertThat(chain.getCurrentDesire(),
42                     equalTo(desire));
43          assertThat(chain.getInitialDesire(),
44                     equalTo(desire));
45          assertThat(chain, contains(desire));
46          assertThat(chain.getPreviousDesires(), hasSize(0));
47      }
48  
49      @Test
50      public void testMultipleDesires() {
51          Desire d1 = new MockDesire(InputStream.class, null, null);
52          Desire d2 = new MockDesire(FileInputStream.class, null, null);
53          DesireChain chain = DesireChain.singleton(d1).extend(d2);
54          assertThat(chain.getCurrentDesire(),
55                     equalTo(d2));
56          assertThat(chain.getInitialDesire(),
57                     equalTo(d1));
58          assertThat(chain.getPreviousDesires(),
59                     equalTo((List<Desire>) DesireChain.singleton(d1)));
60          assertThat(chain, contains(d1, d2));
61      }
62  }