Skip to content

Commit 9f50044

Browse files
committed
Merge branch 'issue/7'
2 parents 2c4cd28 + 9bed997 commit 9f50044

File tree

2 files changed

+20
-43
lines changed

2 files changed

+20
-43
lines changed

demo-assignments/A2-ABC/egypt/egypt_singleton.py

+14-14
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,23 @@ class Solution(Kattis):
1414
"""
1515
_instance: "Solution" | None = None
1616

17+
def __new__(cls, input_source: Any = sys.stdin) -> Solution:
18+
"""Creates a new instance of the class
19+
20+
Args:
21+
input_source (Any): input source
22+
23+
Returns:
24+
Solution: class instance
25+
"""
26+
if not cls._instance:
27+
cls._instance = super().__new__(cls)
28+
return cls._instance
29+
1730
def __init__(self, input_source: Any = sys.stdin) -> None:
1831
"""Constructor
1932
"""
20-
if Solution._instance:
21-
raise NameError(
22-
"Cannot create multiple instances of \
23-
a singleton class Solution")
24-
25-
super().__init__(input_source)
26-
Solution._instance = self
27-
# self._input_source: Any = input_source
33+
Kattis.__init__(self, input_source)
2834
self._data: List[List[int]] = []
2935
self._triangles: List[Triangle] = []
3036
self._answer: List[str] = []
@@ -86,12 +92,6 @@ def print_answer(self) -> None:
8692
"""
8793
sys.stdout.write(self.answer)
8894

89-
@classmethod
90-
def reset_instance(cls) -> None:
91-
"""Resets the instance
92-
"""
93-
cls._instance = None
94-
9595
@staticmethod
9696
def main() -> None:
9797
"""Main function to run the solution

demo-assignments/A2-ABC/egypt/tests/test_egypt_singleton.py

+6-29
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ class TestSolution(unittest.TestCase):
2222
"""
2323

2424
def tearDown(self) -> None:
25-
Solution.reset_instance()
2625
return super().tearDown()
2726

2827
@patch('sys.stdout', new_callable=StringIO)
@@ -89,7 +88,6 @@ def test_main(self, mock_stdout: StringIO) -> None:
8988
Solution.main()
9089
expected: str = 'wrong\nwrong\nwrong\nright\n'
9190
self.assertEqual(mock_stdout.getvalue(), expected)
92-
# Solution.reset_instance()
9391

9492
def test_data(self) -> None:
9593
"""Tests data property
@@ -99,35 +97,14 @@ def test_data(self) -> None:
9997
sol = Solution(sys.stdin)
10098
self.assertEqual(
10199
sol.data, [[2, 3, 4], [20, 50, 62], [3, 4, 7]])
102-
# Solution.reset_instance()
103100

104101
def test_singleton(self) -> None:
105-
"""Tests singleton property
106-
"""
107-
data = '2 3 4\n20 50 62\n3 4 7\n0 0 0\n'
108-
with patch('sys.stdin', StringIO(data)):
109-
_ = Solution(sys.stdin)
110-
with self.assertRaises(NameError):
111-
_ = Solution(sys.stdin)
112-
# self.assertIs(instance1, instance2)
113-
# Solution.reset_instance()
114-
115-
def test_get_instance(self) -> None:
116102
"""Tests get_instance method
117103
"""
118-
data = '2 3 4\n20 50 62\n3 4 7\n0 0 0\n'
119-
with patch('sys.stdin', StringIO(data)):
120-
instance1 = Solution(sys.stdin)
121-
instance2 = Solution.get_instance()
122-
self.assertIs(instance1, instance2)
123-
124-
def test_set_instance(self) -> None:
125-
"""Tests set_instance method
126-
"""
127-
data = '2 3 4\n20 50 62\n3 4 7\n0 0 0\n'
128-
with patch('sys.stdin', StringIO(data)):
104+
data1 = '2 3 4\n20 50 62\n3 4 7\n0 0 0\n'
105+
data2 = '20 30 40\n200 500 620\n30 40 70\n0 0 0\n'
106+
with patch('sys.stdin', StringIO(data1)):
129107
instance1 = Solution(sys.stdin)
130-
instance2 = Solution.get_instance()
131-
self.assertIs(instance1, instance2)
132-
Solution.reset_instance()
133-
self.assertIsNone(Solution._instance)
108+
with patch('sys.stdin', StringIO(data2)):
109+
instance2 = Solution(sys.stdin)
110+
self.assertIs(instance1, instance2)

0 commit comments

Comments
 (0)