aboutsummaryrefslogtreecommitdiffstats
path: root/tests/BSCListenerTest.st
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <holger@moiji-mobile.com>2014-03-13 12:38:59 +0100
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2014-03-13 12:38:59 +0100
commitb02113d070ea4cdc7a9722d908d0f33b3433ef4f (patch)
treecc30eec8713986d55fdbbb27933b1f67f67123c0 /tests/BSCListenerTest.st
parent69ca1cbe52e953afe3092436241ebfec09b8cbb3 (diff)
test: Splity tests into file per class
Diffstat (limited to 'tests/BSCListenerTest.st')
-rw-r--r--tests/BSCListenerTest.st47
1 files changed, 47 insertions, 0 deletions
diff --git a/tests/BSCListenerTest.st b/tests/BSCListenerTest.st
new file mode 100644
index 0000000..0658c91
--- /dev/null
+++ b/tests/BSCListenerTest.st
@@ -0,0 +1,47 @@
+"
+ (C) 2010 by Holger Hans Peter Freyther
+ All Rights Reserved
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Affero General Public License as
+ published by the Free Software Foundation, either version 3 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 Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+"
+
+TestCase subclass: BSCListenerTest [
+ <category: 'OsmoMSC-Tests'>
+ <comment: 'Test some basic socket functionality'>
+
+ testListenAndStop [
+ | listener res |
+ listener := BSCListener initWith: '127.0.0.1' port: 9245 handler: nil.
+
+ 'Will attempt to stop the connection' printNl.
+ [(Delay forSeconds: 2) wait. listener stop] fork.
+ res := listener serve.
+ self deny: res.
+
+ "Test that it will work again"
+ 'Will attempt to stop the connection2' printNl.
+ listener start.
+ [(Delay forSeconds: 2) wait. listener stop] fork.
+ res := listener serve.
+ self deny: res.
+ ]
+
+ testListenOnDeadSocket [
+ | listener res |
+ listener := BSCListener initWith: '127.0.0.1' port: 9245 handler: nil.
+ listener stop.
+ res := listener serve.
+ self deny: res.
+ ]
+]