File: test_simplenote.py

package info (click to toggle)
python-simplenote 2.1.4-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 164 kB
  • sloc: python: 495; makefile: 116
file content (215 lines) | stat: -rw-r--r-- 8,910 bytes parent folder | download
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
# -*- coding: utf-8 -*-
import unittest
import os
import sys
sys.path.append(os.getcwd())
#Override NOTE_FETCH_LENGTH for testing purposes
import simplenote
simplenote.simplenote.NOTE_FETCH_LENGTH = 5

class TestSimplenote(unittest.TestCase):

    @classmethod
    def setUpClass(cls):
        cls.user = "simplenote-test@lordofhosts.de"
        cls.password = "foobar"
        cls.simplenote_instance = simplenote.Simplenote(cls.user, cls.password)

    def setUp(self):
        self.clear_all_notes()
        self.unicode_note = u'∮ E⋅da = Q,  n → ∞, ∑ f(i) = ∏ g(i),      ⎧⎡⎛┌─────┐⎞⎤⎫'
        self.unicode_note_id = False
        self.initial_note_count = 0
        self.tag_note_count = 0
        self.first_note = False
        self.second_note = False
        note, status = self.simplenote_instance.add_note({"content": "First Note.", "tags": ["tag1"]})
        if status == 0:
            self.initial_note_count += 1
            self.tag_note_count += 1
            self.first_note = note['key']
        note, status = self.simplenote_instance.add_note({"content": "Second Note.", "tags": ["tag1", "tag2"]})
        if status == 0:
            self.initial_note_count += 1
            self.tag_note_count += 1
            self.second_note = note['key']
        note, status = self.simplenote_instance.add_note(self.unicode_note)
        if status == 0:
            self.initial_note_count += 1
            self.unicode_note_id = note['key']

    def tearDown(self):
        self.clear_all_notes()

    def test_simplenote_auth(self):
        token = self.simplenote_instance.get_token()
        self.assertNotEqual(None, token)

    def test_simplenote_failed_auth(self):
        s = simplenote.Simplenote(self.user, "")
        self.assertRaises(simplenote.SimplenoteLoginFailed, s.get_token)

    def test_simplenote_get_list_length(self):
        res, status = self.simplenote_instance.get_note_list()
        if status == 0:
            self.assertEqual(self.initial_note_count, len(res))
        else:
            self.assertEqual(0, len(res))

    def test_simplenote_get_list_length_longer_than_note_fetch_length(self):
        while self.initial_note_count <= simplenote.simplenote.NOTE_FETCH_LENGTH+1:
            note, status = self.simplenote_instance.add_note("Note "+str(self.initial_note_count+1))
            if status == 0:
                self.initial_note_count += 1

        res, status = self.simplenote_instance.get_note_list()
        if status == 0:
            self.assertTrue(len(res) > simplenote.simplenote.NOTE_FETCH_LENGTH)

    def test_simplenote_get_list_with_tags(self):
        res, status = self.simplenote_instance.get_note_list(tags=["tag1"])
        if status == 0:
            self.assertEqual(self.tag_note_count, len(res))
        else:
            self.assertEqual(0, len(res))

    # TODO: I can't think of a good way to test this yet since test period is
    # relatively quick
    # def test_simplenote_get_list_with_since(self)

    def test_simplenote_get_list_without_data(self):
        res, status = self.simplenote_instance.get_note_list(data=False)
        if status == 0:
            self.assertEqual(self.initial_note_count, len(res))
        else:
            self.assertEqual(0, len(res))

    def test_simplenote_first_note(self):
        if self.first_note != False:
            note, status = self.simplenote_instance.get_note(self.first_note)
            if status == 0:
                self.assertTrue(type(note) == dict)
                self.assertEqual("First Note.", note["content"].split('\n')[0])

    def test_simplenote_second_note(self):
        if self.second_note != False:
            note, status = self.simplenote_instance.get_note(self.second_note)
            if status == 0:
                self.assertTrue(type(note) == dict)
                self.assertEqual("Second Note.", note["content"].split('\n')[0])

    def test_simplenote_trash_note(self):
        if self.first_note != False:
            note, status = self.simplenote_instance.trash_note(self.first_note)
            if status == 0:
                self.assertEqual(1, note["deleted"])

        if self.second_note != False:
            note, status = self.simplenote_instance.trash_note(self.second_note)
            if status == 0:
                self.assertEqual(1, note["deleted"])

    def test_simplenote_delete_note(self):
        if self.first_note != False:
            note, status = self.simplenote_instance.delete_note(self.first_note)
            if status == 0:
                note, status = self.simplenote_instance.get_note(self.first_note)
                self.assertEqual(-1, status)

        if self.second_note != False:
            note, status = self.simplenote_instance.delete_note(self.second_note)
            if status == 0:
                note, status = self.simplenote_instance.get_note(self.second_note)
                self.assertEqual(-1, status)

    def test_simplenote_add_note_object(self):
        res, status = self.simplenote_instance.add_note({"content":
                                                                     "new note"})
        if status == 0:
            note, status = self.simplenote_instance.get_note(res["key"])
            if status == 0:
                self.assertEqual("new note", note["content"])

    def test_simplenote_tags_sorted(self):
        res, status = self.simplenote_instance.add_note({"content": "A note with tags in any order.", "tags": ["cat", "dog", "ant"]})
        if status == 0:
            note, status = self.simplenote_instance.get_note(res["key"])
            if status == 0:
                self.assertEqual([u'ant', u'cat', u'dog'], note["tags"])

    def test_simplenote_add_note_content(self):
        res, status = self.simplenote_instance.add_note("new note")
        if status == 0:
            note, status = self.simplenote_instance.get_note(res["key"])
            if status == 0:
                self.assertEqual("new note", note["content"])

    def test_simplenote_update_note(self):
        note = {}
        note['key'] = self.first_note
        note["content"] = "Updated Note."
        note, status = self.simplenote_instance.update_note(note)
        if status == 0:
            note, status = self.simplenote_instance.get_note(note["key"])
            if status == 0:
                self.assertEqual("Updated Note.", note["content"].split('\n')[0])

    def test_simplenote_is_unicode(self):
        if self.unicode_note_id != False:
            note, status = self.simplenote_instance.get_note(self.unicode_note_id)
            if status == 0:
                self.assertTrue(self.is_utf8(note["content"]))

    def test_html_entity_unescape(self):
        note, status = self.simplenote_instance.add_note("<>£&'")
        if status == 0:
            note, status = self.simplenote_instance.get_note(note["key"])
            if status == 0:
                self.assertEqual(u"<>£&'", note["content"])

    def test_note_with_plus_signs(self):
        note, status = self.simplenote_instance.add_note("++")
        if status == 0:
            note, status = self.simplenote_instance.get_note(note["key"])
            if status == 0:
                self.assertEqual("++", note["content"])

    def test_note_get_previous_version(self):
        note_v1, status = self.simplenote_instance.add_note("Hello")
        if status == 0:
            note_v2 = {}
            note_v2['key'] = note_v1["key"]
            note_v2["content"] = "Goodbye"
            note_v2, status = self.simplenote_instance.update_note(note_v2)
            if status == 0:
                if note_v2["version"] > 1:
                    note, status = self.simplenote_instance.get_note(note_v2["key"], note_v2["version"]-1)
                    if status == 0:
                        self.assertEqual("Hello", note["content"])

    def test_external_note_object_does_not_get_altered(self):
        external_note = {'modifydate': 2.0, 'createdate': 1.0, 'tags': [], 'content': 'note'}
        reference_note = {'modifydate': 2.0, 'createdate': 1.0, 'tags': [], 'content': 'note'}
        note, status = self.simplenote_instance.add_note(external_note)
        if status == 0:
            self.assertEqual(external_note, reference_note)

    def is_utf8(self, s):
        if sys.version_info < (3, 0):
            try:
                s.decode('utf-8')
                return True
            except UnicodeDecodeError:
                return False
        else:
           return s == self.unicode_note


    def clear_all_notes(self):
        res, status = self.simplenote_instance.get_note_list()
        while (len(res) > 0) and (status == 0):
            [self.simplenote_instance.delete_note(n["key"]) for n in res]
            res, status = self.simplenote_instance.get_note_list()

if __name__ == '__main__':
    unittest.main()