~hadware/magicicada-server/trusty-support

« back to all changes in this revision

Viewing changes to src/backends/filesync/data/tests/test_datamanager.py

  • Committer: Facundo Batista
  • Date: 2015-08-05 13:10:02 UTC
  • Revision ID: facundo@taniquetil.com.ar-20150805131002-he7b7k704d8o7js6
First released version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright 2008-2015 Canonical
 
2
#
 
3
# This program is free software: you can redistribute it and/or modify
 
4
# it under the terms of the GNU Affero General Public License as
 
5
# published by the Free Software Foundation, either version 3 of the
 
6
# License, or (at your option) any later version.
 
7
#
 
8
# This program is distributed in the hope that it will be useful,
 
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
# GNU Affero General Public License for more details.
 
12
#
 
13
# You should have received a copy of the GNU Affero General Public License
 
14
# along with this program. If not, see <http://www.gnu.org/licenses/>.
 
15
#
 
16
# For further info, check  http://launchpad.net/filesync-server
 
17
 
 
18
"""Test the datamanager."""
 
19
 
 
20
import backends.filesync.data.dbmanager as dbm
 
21
from backends.filesync.data.testing.testcase import StorageDALTestCase
 
22
 
 
23
 
 
24
class DataManagerTestCase(StorageDALTestCase):
 
25
    """Run some simple tests on the datamanager"""
 
26
 
 
27
    def test_invalid_shard(self):
 
28
        """Make sure an exception is thrown when an invalid shard is passed"""
 
29
        self.assertRaises(dbm.InvalidShardId, dbm.get_shard_store, "XXX")
 
30
 
 
31
    def test_stores(self):
 
32
        """Make sure we get the stores work"""
 
33
        #run through all the shards and try to talk to them
 
34
        for k in dbm.get_shard_ids():
 
35
            s = dbm.get_shard_store(k)
 
36
            s.execute('SELECT 1')
 
37
 
 
38
        #make sure get_shard_store is working as designed
 
39
        s1 = dbm.get_shard_store('shard0')
 
40
        s2 = dbm.get_shard_store('shard0')
 
41
        #even though they are different, they are the same
 
42
        self.assertTrue(s1 is s2)
 
43
        s3 = dbm.get_shard_store('shard1')
 
44
        self.assertFalse(s1 is s3)