Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests/test_activitieslist.py
blob: 8b54215368c2aab6e3d56a079cc8e8867e81709d (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
# 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 sys
import os
import unittest
import subprocess

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

def _create_activities_palette():
    from gi.repository import Gtk
    from jarabe.desktop.activitieslist import ActivityListPalette

    palette = ActivityListPalette(MockActivityInfo())
    palette.popup()

    Gtk.main()

class TestActivitiesList(unittest.TestCase):
    def _check_activities_palette(self):
        from sugar3.test import uitree

        root = uitree.get_root()
        
        for name in ["Make favorite", "Erase", "Start new"]:
            node = root.find_child(name=name, role_name="label")
            self.assertIsNotNone(node)
 
    def test_activity_list_palette(self):
        process = subprocess.Popen(["python", __file__,
                                    "_create_activities_palette"])
        try:
            self._check_activities_palette()
        finally:
            process.terminate()

if __name__ == '__main__':
    globals()[sys.argv[1]]()