summaryrefslogtreecommitdiff
path: root/service/test/unit/support/test_encrypted_file_storage.py
blob: 8083430e41cb2f0bc1527b9b51a3bc9ef20a52e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#
# Copyright (c) 2014 ThoughtWorks, Inc.
#
# Pixelated is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Pixelated is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with Pixelated. If not, see <http://www.gnu.org/licenses/>.
import os
import shutil
from twisted.trial import unittest
from pixelated.support.encrypted_file_storage import EncryptedFileStorage


class EncryptedFileStorageTest(unittest.TestCase):

    def setUp(self):
        self.key = '2\x06\xf87F:\xd2\xe2]w\xc9\x0c\xb8\x9b\x8e\xd3\x92\t\xabHu\xa6\xa3\x9a\x8d\xec\x0c\xab<8\xbb\x12\xfbP\xf2\x83"\xa1\xcf7\x92\xb0!\xfe\xebM\x80\x8a\x14\xe6\xf9xr\xf5#\x8f\x1bs\xb3#\x0e)a\xd8'
        self.msg = 'this is a very, very secret binary message: \xbe\xba\xca\xfe'
        self.path = os.path.join('tmp', 'search_test')
        self._cleanup_path()
        self.storage = EncryptedFileStorage(self.path, self.key)

    def tearDown(self):
        self._cleanup_path()

    def _cleanup_path(self):
        if os.path.exists(self.path):
            shutil.rmtree(self.path)

    def test_encrypt_decrypt(self):
        storage, msg = self.storage, self.msg

        ciphertext = storage.encrypt(msg)

        self.assertNotEquals(msg, ciphertext)
        self.assertEquals(msg, storage.decrypt(ciphertext))

    def test_mac_against_appended_garbage(self):
        storage, msg = self.storage, self.msg

        ciphertext = storage.encrypt(msg)
        corrupted_ciphertext = ciphertext + 'garbage'

        try:
            storage.decrypt(corrupted_ciphertext)
            self.fail('MAC is not detecting appended garbage on ciphertext')
        except:
            pass

    def test_mac_against_modified_file(self):
        storage, msg = self.storage, self.msg

        ciphertext = storage.encrypt(msg)
        corrupted_ciphertext = ''.join([chr(ord(i) >> 1) for i in ciphertext])

        try:
            storage.decrypt(corrupted_ciphertext)
            self.fail('MAC is not detecting corrupt ciphertext')
        except:
            pass