2 * Copyright 2007 Bill Medland
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #include <wine/test.h>
26 static void test_SQLConfigMode(void)
34 ok(SQLGetConfigMode(NULL
), "SQLGetConfigMode(NULL) should succeed\n");
36 bool_ret
= SQLGetConfigMode(&config_mode
);
37 ok(bool_ret
&& config_mode
== ODBC_BOTH_DSN
, "Failed to get the initial SQLGetConfigMode or it was not both\n");
39 bool_ret
= SQLSetConfigMode(3);
40 sql_ret
= SQLInstallerErrorW(1, &error_code
, NULL
, 0, NULL
);
41 ok(!bool_ret
&& sql_ret
== SQL_SUCCESS_WITH_INFO
&& error_code
== ODBC_ERROR_INVALID_PARAM_SEQUENCE
, "SQLSetConfigMode with invalid argument did not fail correctly\n");
43 ok (ODBC_SYSTEM_DSN
== 2 && ODBC_USER_DSN
== 1 && ODBC_BOTH_DSN
== 0, "SQLSetConfigMode modes not as expected\n");
44 for (i
= ODBC_SYSTEM_DSN
; i
>= ODBC_BOTH_DSN
; --i
)
46 ok(SQLSetConfigMode((UWORD
)i
), "SQLSetConfigMode Failed to set config mode\n");
47 bool_ret
= SQLGetConfigMode(&config_mode
);
48 ok(bool_ret
&& config_mode
== i
, "Failed to confirm SQLSetConfigMode.\n");
50 /* And that leaves it correctly on BOTH */
53 static void test_SQLInstallerError(void)
57 /* MSDN states that the error number should be between 1 and 8. Passing 0 is an error */
58 sql_ret
= SQLInstallerError(0, NULL
, NULL
, 0, NULL
);
59 ok(sql_ret
== SQL_ERROR
, "SQLInstallerError(0...) failed with %d instead of SQL_ERROR\n", sql_ret
);
60 /* However numbers greater than 8 do not return SQL_ERROR.
61 * I am currently unsure as to whether it should return SQL_NO_DATA or "the same as for error 8";
62 * I have never been able to generate 8 errors to test it
64 sql_ret
= SQLInstallerError(65535, NULL
, NULL
, 0, NULL
);
65 ok(sql_ret
== SQL_NO_DATA
, "SQLInstallerError(>8...) failed with %d instead of SQL_NO_DATA\n", sql_ret
);
67 /* Force an error to work with. This should generate ODBC_ERROR_INVALID_BUFF_LEN */
68 ok(!SQLGetInstalledDrivers(0, 0, 0), "Failed to force an error for testing\n");
69 sql_ret
= SQLInstallerError(2, NULL
, NULL
, 0, NULL
);
70 ok(sql_ret
== SQL_NO_DATA
, "Too many errors when forcing an error for testing\n");
72 /* Null pointers are acceptable in all obvious places */
73 sql_ret
= SQLInstallerError(1, NULL
, NULL
, 0, NULL
);
74 ok(sql_ret
== SQL_SUCCESS_WITH_INFO
, "SQLInstallerError(null addresses) failed with %d instead of SQL_SUCCESS_WITH_INFO\n", sql_ret
);
77 static void test_SQLInstallDriverManager(void)
82 CHAR target_path
[MAX_PATH
];
86 bool_ret
= SQLInstallDriverManager(NULL
, 0, NULL
);
87 sql_ret
= SQLInstallerErrorW(1, &error_code
, NULL
, 0, NULL
);
88 ok(!bool_ret
, "SQLInstallDriverManager unexpectedly succeeded\n");
90 ok(sql_ret
== SQL_SUCCESS_WITH_INFO
&& error_code
== ODBC_ERROR_INVALID_BUFF_LEN
,
91 "Expected SQLInstallDriverManager to fail with ODBC_ERROR_INVALID_BUFF_LEN\n");
93 /* Length smaller than MAX_PATH */
94 bool_ret
= SQLInstallDriverManager(target_path
, MAX_PATH
/ 2, NULL
);
95 sql_ret
= SQLInstallerErrorW(1, &error_code
, NULL
, 0, NULL
);
97 ok(!bool_ret
, "SQLInstallDriverManager unexpectedly succeeded\n");
98 ok(sql_ret
== SQL_SUCCESS_WITH_INFO
&& error_code
== ODBC_ERROR_INVALID_BUFF_LEN
,
99 "Expected SQLInstallDriverManager to fail with ODBC_ERROR_INVALID_BUFF_LEN\n");
103 bool_ret
= SQLInstallDriverManager(target_path
, MAX_PATH
/ 2, &path_out
);
104 sql_ret
= SQLInstallerErrorW(1, &error_code
, NULL
, 0, NULL
);
106 ok(!bool_ret
, "SQLInstallDriverManager unexpectedly succeeded\n");
107 ok(sql_ret
== SQL_SUCCESS_WITH_INFO
&& error_code
== ODBC_ERROR_INVALID_BUFF_LEN
,
108 "Expected SQLInstallDriverManager to fail with ODBC_ERROR_INVALID_BUFF_LEN\n");
109 ok(path_out
== 0xcafe, "Expected path_out to not have changed\n");
113 bool_ret
= SQLInstallDriverManager(target_path
, MAX_PATH
, NULL
);
114 sql_ret
= SQLInstallerErrorW(1, &error_code
, NULL
, 0, NULL
);
115 ok(bool_ret
, "SQLInstallDriverManager unexpectedly failed: %d\n",
118 ok(sql_ret
== SQL_NO_DATA
, "Expected SQL_NO_DATA, got %d\n", sql_ret
);
120 ok(sql_ret
== SQL_SUCCESS_WITH_INFO
,
121 "Expected SQL_SUCCESS_WITH_INFO, got %d\n", sql_ret
);
124 bool_ret
= SQLInstallDriverManager(target_path
, MAX_PATH
, &path_out
);
125 sql_ret
= SQLInstallerErrorW(1, &error_code
, NULL
, 0, NULL
);
126 ok(bool_ret
, "SQLInstallDriverManager unexpectedly failed: %d\n",
129 ok(sql_ret
== SQL_NO_DATA
, "Expected SQL_NO_DATA, got %d\n", sql_ret
);
131 ok(sql_ret
== SQL_SUCCESS_WITH_INFO
,
132 "Expected SQL_SUCCESS_WITH_INFO, got %d\n", sql_ret
);
133 /* path_out should in practice be less than 0xcafe */
134 ok(path_out
!= 0xcafe, "Expected path_out to show the correct amount of bytes\n");
139 test_SQLConfigMode();
140 test_SQLInstallerError();
141 test_SQLInstallDriverManager();