From 6b68aa989c9d5f6c031e992f44e5ad792ab48994 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 3 Feb 2015 10:44:41 +0100 Subject: unit1600: NTLM unit test --- tests/data/test1600 | 27 ++++++++++++++++++++++++++ tests/unit/.gitignore | 1 + tests/unit/Makefile.inc | 8 ++++++-- tests/unit/unit1600.c | 50 +++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 84 insertions(+), 2 deletions(-) create mode 100644 tests/data/test1600 create mode 100644 tests/unit/unit1600.c (limited to 'tests') diff --git a/tests/data/test1600 b/tests/data/test1600 new file mode 100644 index 000000000..88040747a --- /dev/null +++ b/tests/data/test1600 @@ -0,0 +1,27 @@ + + + +unittest +NTLM + + + +# +# Client-side + + +none + + +unittest +NTLM + + +NTLM unit tests + + +unit1600 + + + + diff --git a/tests/unit/.gitignore b/tests/unit/.gitignore index f5367fb58..c3f6d01a2 100644 --- a/tests/unit/.gitignore +++ b/tests/unit/.gitignore @@ -1 +1,2 @@ unit13[0-9][0-9] +unit1600 diff --git a/tests/unit/Makefile.inc b/tests/unit/Makefile.inc index 526ec1fbd..d522e0d20 100644 --- a/tests/unit/Makefile.inc +++ b/tests/unit/Makefile.inc @@ -5,8 +5,9 @@ UNITFILES = curlcheck.h \ ../libtest/first.c # These are all unit test programs -UNITPROGS = unit1300 unit1301 unit1302 unit1303 unit1304 unit1305 unit1307 \ - unit1308 unit1309 unit1330 unit1394 unit1395 unit1396 unit1397 unit1398 +UNITPROGS = unit1300 unit1301 unit1302 unit1303 unit1304 unit1305 unit1307 \ + unit1308 unit1309 unit1330 unit1394 unit1395 unit1396 unit1397 unit1398 \ + unit1600 unit1300_SOURCES = unit1300.c $(UNITFILES) unit1300_CPPFLAGS = $(AM_CPPFLAGS) @@ -56,3 +57,6 @@ unit1397_CPPFLAGS = $(AM_CPPFLAGS) unit1398_SOURCES = unit1398.c $(UNITFILES) unit1398_CPPFLAGS = $(AM_CPPFLAGS) +unit1600_SOURCES = unit1600.c $(UNITFILES) +unit1600_CPPFLAGS = $(AM_CPPFLAGS) + diff --git a/tests/unit/unit1600.c b/tests/unit/unit1600.c new file mode 100644 index 000000000..3cc0ebd8e --- /dev/null +++ b/tests/unit/unit1600.c @@ -0,0 +1,50 @@ +/*************************************************************************** + * _ _ ____ _ + * Project ___| | | | _ \| | + * / __| | | | |_) | | + * | (__| |_| | _ <| |___ + * \___|\___/|_| \_\_____| + * + * Copyright (C) 1998 - 2015, Daniel Stenberg, , et al. + * + * This software is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at http://curl.haxx.se/docs/copyright.html. + * + * You may opt to use, copy, modify, merge, publish, distribute and/or sell + * copies of the Software, and permit persons to whom the Software is + * furnished to do so, under the terms of the COPYING file. + * + * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY + * KIND, either express or implied. + * + ***************************************************************************/ +#include "curlcheck.h" + +#include "urldata.h" +#include "curl_ntlm_core.h" + +CURL *easy; + +static CURLcode unit_setup(void) +{ + easy = curl_easy_init(); + return CURLE_OK; +} + +static void unit_stop(void) +{ + curl_easy_cleanup(easy); +} + +UNITTEST_START + + unsigned char output[21]; + unsigned char *testp = output; + Curl_ntlm_core_mk_nt_hash(easy, "1", output); + + verify_memory(testp, + "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" + "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 21); + +UNITTEST_STOP -- cgit v1.2.3