Minor changes, to compile.
[aquarium] / logic / src / test / scala / gr / grnet / aquarium / store / mongodb / EventStoreTest.scala
1 /*
2  * Copyright 2011 GRNET S.A. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or
5  * without modification, are permitted provided that the following
6  * conditions are met:
7  *
8  *   1. Redistributions of source code must retain the above
9  *      copyright notice, this list of conditions and the following
10  *      disclaimer.
11  *
12  *   2. Redistributions in binary form must reproduce the above
13  *      copyright notice, this list of conditions and the following
14  *      disclaimer in the documentation and/or other materials
15  *      provided with the distribution.
16  *
17  * THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
18  * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
20  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
21  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
24  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
25  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
27  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28  * POSSIBILITY OF SUCH DAMAGE.
29  *
30  * The views and conclusions contained in the software and
31  * documentation are those of the authors and should not be
32  * interpreted as representing official policies, either expressed
33  * or implied, of GRNET S.A.
34  */
35
36 package gr.grnet.aquarium.store.mongodb
37
38 import gr.grnet.aquarium.util.{TestMethods, RandomEventGenerator}
39 import org.junit.Assume._
40 import org.junit.Assert._
41 import collection.mutable.ArrayBuffer
42 import gr.grnet.aquarium.logic.events.ResourceEvent
43 import org.junit.{Before, After, Test}
44 import gr.grnet.aquarium.MasterConf._
45 import gr.grnet.aquarium.LogicTestsAssumptions
46
47 /**
48  * @author Georgios Gousios <gousiosg@gmail.com>
49  */
50 class EventStoreTest extends TestMethods with RandomEventGenerator {
51
52   @Before
53   def before() = {
54   }
55
56   @Test
57   def testStoreEvent() = {
58     assumeTrue(LogicTestsAssumptions.EnableMongoDBTests)
59
60     val event = nextResourceEvent()
61     val store = MasterConf.eventStore
62     val result = store.storeEvent(event)
63
64     assert(result.isJust)
65   }
66
67   @Test
68   def testFindEventById(): Unit = {
69     assumeTrue(LogicTestsAssumptions.EnableMongoDBTests)
70
71     val event = nextResourceEvent()
72     val store = MasterConf.eventStore
73
74     val result1 = store.storeEvent(event)
75     assert(result1.isJust)
76
77     val result2 = store.findEventById[ResourceEvent](event.id)
78     assertNotNone(result2)
79   }
80
81   @Test
82   def testfindEventsByUserId(): Unit = {
83     assumeTrue(LogicTestsAssumptions.EnableMongoDBTests)
84     val events = new ArrayBuffer[ResourceEvent]()
85     val store = MasterConf.eventStore
86
87     (1 to 100).foreach {
88       n =>
89         val e = nextResourceEvent
90         events += e
91         store.storeEvent(e)
92     }
93
94     val mostUsedId = events
95       .map{x => x.userId}
96       .groupBy(identity)
97       .mapValues(_.size)
98       .foldLeft((0L,0))((acc, kv) => if (kv._2 > acc._2) kv else acc)._1
99
100     val result = store.findEventsByUserId(mostUsedId)(None)
101     assertEquals(events.filter(p => p.userId.equals(mostUsedId)).size, result.size)
102   }
103
104   @Test
105   def testMultipleMongos = {
106     assumeTrue(LogicTestsAssumptions.EnableMongoDBTests)
107     val a = getMongo
108     val b = getMongo
109     //assertEquals(a.Connection.mongo.get.hashCode(), b.Connection.mongo.get.hashCode())
110   }
111
112   @After
113   def after() = {
114     assumeTrue(LogicTestsAssumptions.EnableMongoDBTests)
115     val a = getMongo
116
117     val col = a.mongo.getDB(
118       MasterConf.get(Keys.persistence_db)
119     ).getCollection(MongoDBStore.EVENTS_COLLECTION)
120
121     val res = col.find
122     while (res.hasNext)
123       col.remove(res.next)
124   }
125
126   private def getMongo = MasterConf.eventStore.asInstanceOf[MongoDBStore]
127 }