jeraldabraham | a3c97d6 | 2014-04-14 01:29:45 -0700 | [diff] [blame] | 1 | #!/usr/bin/python2 |
| 2 | # -*- Mode:python; c-file-style:"gnu"; indent-tabs-mode:nil -*- */ |
| 3 | # |
| 4 | # Copyright (C) 2014 University of Arizona |
| 5 | # Author: Jerald Paul Abraham <jeraldabraham@email.arizona.edu> |
| 6 | # See COPYING for copyright and distribution information. |
| 7 | # |
| 8 | |
| 9 | import os |
| 10 | import time |
| 11 | import unittest |
| 12 | import process_manager |
| 13 | |
| 14 | class test_ndnpeekpoke(unittest.TestCase, process_manager.ProcessManager): |
| 15 | """Test case for testing ndn-tlv-peek and ndn-tlv-poke applications""" |
| 16 | |
| 17 | def setUp(self): |
| 18 | print "\nTesting ndn-tlv-peek & ndn-tlv-poke" |
| 19 | print "***********************************" |
jeraldabraham | b2a2655 | 2014-04-16 21:08:09 -0700 | [diff] [blame] | 20 | os.system("mkdir test_ndnpeekpoke/logs/") |
jeraldabraham | a3c97d6 | 2014-04-14 01:29:45 -0700 | [diff] [blame] | 21 | |
| 22 | def tearDown(self): |
| 23 | self.killNfd() |
| 24 | self.killProcess("ndn-tlv-poke") |
| 25 | self.killProcess("ndn-tlv-peek") |
jeraldabraham | b2a2655 | 2014-04-16 21:08:09 -0700 | [diff] [blame] | 26 | os.system("rm -r test_ndnpeekpoke/logs/") |
jeraldabraham | a3c97d6 | 2014-04-14 01:29:45 -0700 | [diff] [blame] | 27 | self.cleanupProcesses() |
| 28 | |
| 29 | def test_peekpoke(self): |
| 30 | self.startNfd() |
| 31 | time.sleep(1) |
| 32 | pokeInputFile = os.path.abspath("test_ndnpeekpoke/test-poke-input.txt") |
| 33 | self.startProcess("ndn-tlv-poke", |
| 34 | ["ndn-tlv-poke", "ndn:/test/peekpoke"], |
| 35 | "-> Starting Poke", |
| 36 | inputFile=pokeInputFile) |
| 37 | time.sleep(1) |
jeraldabraham | b2a2655 | 2014-04-16 21:08:09 -0700 | [diff] [blame] | 38 | peekOutputFile = os.path.abspath("test_ndnpeekpoke/logs/test-peek-output.txt") |
jeraldabraham | a3c97d6 | 2014-04-14 01:29:45 -0700 | [diff] [blame] | 39 | self.startProcess("ndn-tlv-peek", |
| 40 | ["ndn-tlv-peek", "ndn:/test/peekpoke"], |
| 41 | "-> Starting Peek", |
| 42 | outputFile=peekOutputFile) |
| 43 | time.sleep(1) |
| 44 | self.waitForProcessCompletion("ndn-tlv-peek", 10) |
| 45 | self.waitForProcessCompletion("ndn-tlv-poke", 10) |
| 46 | if self.hasProcessCompleted("ndn-tlv-peek"): |
| 47 | if self.getProcessReturnCode("ndn-tlv-peek") != 0: |
| 48 | print self.getProcessReturnCode("ndn-tlv-peek") |
| 49 | print self.getProcessError("ndn-tlv-peek") |
| 50 | print self.getProcessOutput("ndn-tlv-peek") |
| 51 | self.fail(">> TEST FAILED - received non-zero return code from ndn-tlv-peek") |
| 52 | else: |
| 53 | self.fail(">> TEST FAILED - ndn-tlv-peek failed to complete") |
| 54 | if self.hasProcessCompleted("ndn-tlv-poke"): |
| 55 | if self.getProcessReturnCode("ndn-tlv-poke") != 0: |
| 56 | print self.getProcessError("ndn-tlv-poke") |
| 57 | self.fail(">> TEST FAILED - received non-zero return code from ndn-tlv-poke") |
| 58 | else: |
| 59 | self.fail(">> TEST FAILED - ndn-tlv-poke failed to complete") |
| 60 | print ">> TEST SUCCESSFUL" |