aboutsummaryrefslogtreecommitdiff
path: root/tests/test-freerdp-auth.c
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2012-09-20 08:39:53 +0000
committerTarmac <Unknown>2012-09-20 08:39:53 +0000
commit126edd829bbf88c1a2a186a874acb4a307f3b5a9 (patch)
tree877c48d3bef1123accafba2caa953d73bc2002c5 /tests/test-freerdp-auth.c
parentaa87c8fac598ef6e79a65d6f2eec93d8a4693063 (diff)
parent19c01abdd2c3a3d772cf8b7f54b819231ac4dcba (diff)
downloadlibpam-freerdp2-126edd829bbf88c1a2a186a874acb4a307f3b5a9.tar.gz
libpam-freerdp2-126edd829bbf88c1a2a186a874acb4a307f3b5a9.tar.bz2
libpam-freerdp2-126edd829bbf88c1a2a186a874acb4a307f3b5a9.zip
Adding a testing framework. Approved by Albert Astals Cid, jenkins.
Diffstat (limited to 'tests/test-freerdp-auth.c')
-rw-r--r--tests/test-freerdp-auth.c57
1 files changed, 57 insertions, 0 deletions
diff --git a/tests/test-freerdp-auth.c b/tests/test-freerdp-auth.c
new file mode 100644
index 0000000..a83885e
--- /dev/null
+++ b/tests/test-freerdp-auth.c
@@ -0,0 +1,57 @@
+/*
+ * Copyright © 2012 Canonical Ltd.
+ *
+ * This program is free software: you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 3, as
+ * published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranties of
+ * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
+ * PURPOSE. See the GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * Author: Ted Gould <ted@canonical.com>
+ */
+
+#include <stdlib.h>
+#include <stdio.h>
+#include <string.h>
+
+int
+main (int argc, char * argv[])
+{
+ char password[512];
+ if (argc != 4) {
+ printf("Not enough params");
+ return -1;
+ }
+
+ if (scanf("%511s", password) != 1) {
+ return -1;
+ }
+
+ /* Check username */
+ if (strcmp(argv[2], "ruser")) {
+ return -1;
+ }
+
+ /* Check password */
+ if (strcmp(password, "password")) {
+ return -1;
+ }
+
+ /* Check domain */
+ if (strcmp(argv[3], "domain")) {
+ return -1;
+ }
+
+ /* Check hostname */
+ if (strcmp(argv[1], "rhost")) {
+ return -1;
+ }
+
+ return 0;
+}