Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests/test_activitieslist.py
blob: a5a2e7cc3038873ad7d4b6543bfe5d80e5e39c1e (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
# Copyright (C) 2012, Daniel Narvaez
#
# 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 unittest

from jarabe.desktop.activitieslist import ActivityListPalette

tests_dir = os.path.dirname(__file__)
base_dir = os.path.dirname(tests_dir)
data_dir = os.path.join(tests_dir, "data")

os.environ["SUGAR_ACTIVITIES_DEFAULTS"] = \
    os.path.join(base_dir, "data", "activities.defaults")
os.environ["SUGAR_MIME_DEFAULTS"] = \
    os.path.join(base_dir, "data", "mime.defaults")

class MockActivityInfo:
    def get_bundle_id(self):
        return "mock"

    def get_activity_version(self):
        return 1

    def get_is_favorite(self):
        return False

    def get_icon(self):
        return os.path.join(data_dir, "activity.svg")

    def get_name(self):
        return "mock"

    def get_path(self):
        return "mock"

    def is_user_activity(self):
        return True

class TestActivitiesList(unittest.TestCase):
    def test_activity_list_palette(self):
        palette = ActivityListPalette(MockActivityInfo())