Chetan Gaonker | cfcce78 | 2016-05-10 10:10:42 -0700 | [diff] [blame] | 1 | # |
| 2 | # Copyright 2016-present Ciena Corporation |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | # |
Chetan Gaonker | cd974cd | 2016-03-04 14:56:58 -0800 | [diff] [blame] | 16 | import unittest |
| 17 | import os,sys |
Chetan Gaonker | cd974cd | 2016-03-04 14:56:58 -0800 | [diff] [blame] | 18 | from EapMD5 import MD5AuthTest |
| 19 | |
| 20 | class eap_auth_exchange(unittest.TestCase): |
| 21 | def test_eap_md5(self): |
| 22 | t = MD5AuthTest() |
| 23 | t.runTest() |
| 24 | def test_eap_md5_wrg_password(self): |
| 25 | t = MD5AuthTest() |
| 26 | t._wrong_password() |
| 27 | t.runTest() |
| 28 | |
| 29 | if __name__ == '__main__': |
| 30 | t = MD5AuthTest() |
| 31 | t.runTest() |
| 32 | ####### Start the EAP-MD5 Negative testcase |
| 33 | t._wrong_password() |
| 34 | t.runTest() |
| 35 | |