Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests/test_webaccounts.py
blob: d086ad6fd241e1c0c1666c349583fe18a7e23cba (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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# Copyright (C) 2013, Walter Bender
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA

import os
import sys
import unittest

from gi.repository import Gtk

from jarabe import config
from jarabe.web.account import Account
from jarabe.web import accountsmanager

ACCOUNT_NAME = 'mock'

tests_dir = os.path.dirname(__file__)
extension_dir = os.path.join(tests_dir, 'extensions')
web_extension_dir = os.path.join(extension_dir, 'web')


class TestWebAccounts(unittest.TestCase):
    def setUp(self):
        os.environ["MOCK_ACCOUNT_STATE"] = str(Account.STATE_NONE)
        self.save_ext_path = config.ext_path
        config.ext_path = extension_dir
        sys.path.append(config.ext_path)

    def test_get_description(self):
        accounts = accountsmanager.get_all_accounts()
        found_mock_account = False
        for account in accounts:
            if account.get_description() == ACCOUNT_NAME:
                found_mock_account = True
                break
        self.assertTrue(found_mock_account)

    def test_icon_theme(self):
        icon_theme = Gtk.IconTheme.get_default()
        icon_search_path = icon_theme.get_search_path()
        icon_path = os.path.join(web_extension_dir, ACCOUNT_NAME, 'icons')
        self.assertTrue(icon_path in icon_search_path)

    def test_get_all_accounts(self):
        accounts = accountsmanager.get_all_accounts()
        self.assertTrue(len(accounts) > 0)

    def test_get_configured_accounts(self):
        os.environ["MOCK_ACCOUNT_STATE"] = str(Account.STATE_VALID)
        accounts = accountsmanager.get_configured_accounts()
        count = len(accounts)
        self.assertTrue(count > 0)

        os.environ["MOCK_ACCOUNT_STATE"] = str(Account.STATE_NONE)
        accounts = accountsmanager.get_configured_accounts()
        self.assertTrue(len(accounts) == count - 1)

        os.environ["MOCK_ACCOUNT_STATE"] = str(Account.STATE_EXPIRED)
        accounts = accountsmanager.get_configured_accounts()
        self.assertTrue(len(accounts) == count)

    def test_get_active_accounts(self):
        os.environ["MOCK_ACCOUNT_STATE"] = str(Account.STATE_VALID)
        accounts = accountsmanager.get_active_accounts()
        count = len(accounts)
        self.assertTrue(count > 0)

        os.environ["MOCK_ACCOUNT_STATE"] = str(Account.STATE_EXPIRED)
        accounts = accountsmanager.get_active_accounts()
        self.assertTrue(len(accounts) == count - 1)

    def test_share_menu(self):
        accounts = accountsmanager.get_all_accounts()
        for account in accounts:
            shared_journal_entry = account.get_shared_journal_entry()
            share_menu = shared_journal_entry.get_share_menu(
                {'account': 'mock'})
            self.assertIsNotNone(share_menu)

    def test_refresh_menu(self):
        accounts = accountsmanager.get_all_accounts()
        for account in accounts:
            shared_journal_entry = account.get_shared_journal_entry()
            refresh_menu = shared_journal_entry.get_refresh_menu()
            self.assertIsNotNone(refresh_menu)

    def tearDown(self):
        sys.path.remove(config.ext_path)
        config.ext_path = self.save_ext_path