FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-patterns/test_observer.py at master · asustnt3/python-patterns · GitHub
asustnt3
/
python-patterns
Public
forked from
faif/python-patterns
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
python-patterns
/
test_observer.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
73 lines (58 loc) · 2.29 KB
Breadcrumbs
python-patterns
/
test_observer.py
Copy path
File metadata and controls
73 lines (58 loc) · 2.29 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import
sys
from
io
import
StringIO
from
observer
import
Subject
,
Data
,
DecimalViewer
,
HexViewer
if
sys
.
version_info
<
(
2
,
7
):
import
unittest2
as
unittest
else
:
import
unittest
try
:
from
unittest
.
mock
import
patch
except
ImportError
:
from
mock
import
patch
class
TestSubject
(
unittest
.
TestCase
):
@
classmethod
def
setUpClass
(
cls
):
cls
.
s
=
Subject
()
cls
.
dec_obs
=
DecimalViewer
()
cls
.
hex_obs
=
HexViewer
()
def
test_a_observer_list_shall_be_empty_initially
(
cls
):
cls
.
assertEqual
(
len
(
cls
.
s
.
_observers
),
0
)
def
test_b_observers_shall_be_attachable
(
cls
):
cls
.
s
.
attach
(
cls
.
dec_obs
)
cls
.
assertEqual
(
isinstance
(
cls
.
s
.
_observers
[
0
],
DecimalViewer
),
True
)
cls
.
assertEqual
(
len
(
cls
.
s
.
_observers
),
1
)
cls
.
s
.
attach
(
cls
.
hex_obs
)
cls
.
assertEqual
(
isinstance
(
cls
.
s
.
_observers
[
1
],
HexViewer
),
True
)
cls
.
assertEqual
(
len
(
cls
.
s
.
_observers
),
2
)
def
test_c_observers_shall_be_detachable
(
cls
):
cls
.
s
.
detach
(
cls
.
dec_obs
)
# hex viewer shall be remaining if dec viewer is detached first
cls
.
assertEqual
(
isinstance
(
cls
.
s
.
_observers
[
0
],
HexViewer
),
True
)
cls
.
assertEqual
(
len
(
cls
.
s
.
_observers
),
1
)
cls
.
s
.
detach
(
cls
.
hex_obs
)
cls
.
assertEqual
(
len
(
cls
.
s
.
_observers
),
0
)
class
TestData
(
unittest
.
TestCase
):
@
classmethod
def
setUpClass
(
cls
):
cls
.
dec_obs
=
DecimalViewer
()
cls
.
hex_obs
=
HexViewer
()
cls
.
sub
=
Data
(
'Data'
)
#inherited behavior already tested with TestSubject
cls
.
sub
.
attach
(
cls
.
dec_obs
)
cls
.
sub
.
attach
(
cls
.
hex_obs
)
def
test_data_change_shall_notify_all_observers_once
(
cls
):
with
patch
.
object
(
cls
.
dec_obs
,
'update'
)
as
mock_dec_obs_update
,\
patch
.
object
(
cls
.
hex_obs
,
'update'
)
as
mock_hex_obs_update
:
cls
.
sub
.
data
=
10
cls
.
assertEqual
(
mock_dec_obs_update
.
call_count
,
1
)
cls
.
assertEqual
(
mock_hex_obs_update
.
call_count
,
1
)
def
test_data_value_shall_be_changeable
(
cls
):
cls
.
sub
.
data
=
20
cls
.
assertEqual
(
cls
.
sub
.
_data
,
20
)
def
test_data_name_shall_be_changeable
(
cls
):
cls
.
sub
.
name
=
'New Data Name'
cls
.
assertEqual
(
cls
.
sub
.
name
,
'New Data Name'
)
if
__name__
==
"__main__"
:
unittest
.
main
()
Back
|
FazBrowse Home
|
New Git URL