/tests/mxunit/suite/TestConfigAPI.cfc

http://github.com/nmische/cf-configmanager · ColdFusion CFScript · 1279 lines · 1018 code · 261 blank · 0 comment · 0 complexity · 9da46e7ffd6d523c3b6bcc77198b846a MD5 · raw file

  1. <cfcomponent extends="mxunit.framework.TestCase">
  2. <cffunction name="beforeTests">
  3. <cfscript>
  4. variables.apiUrl = "http://127.0.0.1:8500/CFIDE/administrator/configmanager/api/config.cfm";
  5. variables.username = "admin";
  6. variables.password = "vagrant";
  7. </cfscript>
  8. <cfset deleteTestDatasource("test_db2") />
  9. <cfset deleteTestDatasource("test_derbyclient") />
  10. <cfset deleteTestDatasource("test_derbyembedded") />
  11. <cfset deleteTestDatasource("test_infomix") />
  12. <cfset deleteTestDatasource("test_msaccess") />
  13. <cfset deleteTestDatasource("test_msaccessunicode") />
  14. <cfset deleteTestDatasource("test_mssql") />
  15. <cfset deleteTestDatasource("test_mysql5") />
  16. <cfset deleteTestDatasource("test_mysql_dd") />
  17. <cfset deleteTestDatasource("test_odbcsocket") />
  18. <cfset deleteTestDatasource("test_oracle") />
  19. <cfset deleteTestDatasource("test_other") />
  20. <cfset deleteTestDatasource("test_postgresql") />
  21. <cfset deleteTestDatasource("test_sybase") />
  22. </cffunction>
  23. <cffunction name="setup">
  24. </cffunction>
  25. <cffunction name="teardown">
  26. <cfset deleteTestDatasource("test_db2") />
  27. <cfset deleteTestDatasource("test_derbyclient") />
  28. <cfset deleteTestDatasource("test_derbyembedded") />
  29. <cfset deleteTestDatasource("test_infomix") />
  30. <cfset deleteTestDatasource("test_msaccess") />
  31. <cfset deleteTestDatasource("test_msaccessunicode") />
  32. <cfset deleteTestDatasource("test_mssql") />
  33. <cfset deleteTestDatasource("test_mysql5") />
  34. <cfset deleteTestDatasource("test_mysql_dd") />
  35. <cfset deleteTestDatasource("test_odbcsocket") />
  36. <cfset deleteTestDatasource("test_oracle") />
  37. <cfset deleteTestDatasource("test_other") />
  38. <cfset deleteTestDatasource("test_postgresql") />
  39. <cfset deleteTestDatasource("test_sybase") />
  40. </cffunction>
  41. <cffunction name="testAuthenticaitonNoCredentials">
  42. <cfset var apiResult = "" />
  43. <cfhttp url="#variables.apiUrl#" method="get" result="apiResult" />
  44. <cfset assertEquals("401 UNAUTHORIZED",apiResult.statusCode) />
  45. </cffunction>
  46. <cffunction name="testAuthenticaitonWithCredentials">
  47. <cfset var apiResult = "" />
  48. <cfhttp url="#variables.apiUrl#" method="get" username="#variables.username#" password="#variables.password#" result="apiResult" />
  49. <cfset assertEquals("400 BAD REQUEST",apiResult.statusCode) />
  50. </cffunction>
  51. <cffunction name="testApiCallWithValidApplicationJSONContentType">
  52. <cfset var apiResult = "" />
  53. <!--- first set the config to a known state --->
  54. <cfset setCacheProperty("SaveClassFiles",false) />
  55. <cfhttp url="#variables.apiUrl#" method="post" username="#variables.username#" password="#variables.password#" result="apiResult">
  56. <cfhttpparam type="header" name="Content-Type" value="application/json" />
  57. <cfhttpparam type="body" value="{ ""runtime"" : { ""cacheProperty"" : [ {""propertyName"" : ""SaveClassFiles"", ""propertyValue"" : true } ] } }" />
  58. </cfhttp>
  59. <cfset var expected = true />
  60. <!--- get the current config --->
  61. <cfset var actual = getCacheProperty("SaveClassFiles") />
  62. <cfset assertEquals("200 SUCCESS",apiResult.statusCode) />
  63. <cfset assertEquals(expected,actual,"Expected SaveClassFiles to be true.") />
  64. </cffunction>
  65. <cffunction name="testApiCallWithValidTextJSONContentType">
  66. <cfset var apiResult = "" />
  67. <!--- first set the config to a known state --->
  68. <cfset setCacheProperty("SaveClassFiles",false) />
  69. <cfhttp url="#variables.apiUrl#" method="post" username="#variables.username#" password="#variables.password#" result="apiResult">
  70. <cfhttpparam type="header" name="Content-Type" value="text/json" />
  71. <cfhttpparam type="body" value="{ ""runtime"" : { ""cacheProperty"" : [ {""propertyName"" : ""SaveClassFiles"", ""propertyValue"" : true } ] } }" />
  72. </cfhttp>
  73. <cfset var expected = true />
  74. <!--- get the current config --->
  75. <cfset var actual = getCacheProperty("SaveClassFiles") />
  76. <cfset assertEquals("200 SUCCESS",apiResult.statusCode) />
  77. <cfset assertEquals(expected,actual,"Expected SaveClassFiles to be true.") />
  78. </cffunction>
  79. <cffunction name="testApiCallWithInValidJSON">
  80. <cfset var apiResult = "" />
  81. <cfhttp url="#variables.apiUrl#" method="post" username="#variables.username#" password="#variables.password#" result="apiResult">
  82. <cfhttpparam type="header" name="Content-Type" value="application/json" />
  83. <cfhttpparam type="body" value="{ ""runtime"" : { ""cacheProperty"" : [ {""propertyName"" : ""SaveClassFiles"", ""propertyValue"" : true } } }" />
  84. </cfhttp>
  85. <cfset assertEquals("400 BAD REQUEST",apiResult.statusCode) />
  86. </cffunction>
  87. <!--- DB2 --->
  88. <cffunction name="testCreateDB2">
  89. <cfset var apiResult = "" />
  90. <cfset var jsonStruct = {
  91. datasource = {
  92. DB2 = [
  93. {
  94. name = "test_db2",
  95. host = "sql.example.com",
  96. database = "test",
  97. username = "test",
  98. password = "test"
  99. }
  100. ]
  101. }
  102. } />
  103. <cfset var jsonData = SerializeJSON(jsonStruct) />
  104. <cfhttp url="#variables.apiUrl#" method="post" username="#variables.username#" password="#variables.password#" result="apiResult">
  105. <cfhttpparam type="header" name="Content-Type" value="text/json" />
  106. <cfhttpparam type="body" value="#jsonData#" />
  107. </cfhttp>
  108. <cfset assertEquals("200 SUCCESS",apiResult.statusCode) />
  109. </cffunction>
  110. <!--- DerbyClient --->
  111. <cffunction name="testCreateDerbyClient">
  112. <cfset var apiResult = "" />
  113. <cfset var jsonStruct = {
  114. datasource = {
  115. DerbyClient = [
  116. {
  117. name = "test_derbyclient",
  118. host = "sql.example.com",
  119. database = "test",
  120. username = "test",
  121. password = "test"
  122. }
  123. ]
  124. }
  125. } />
  126. <cfset var jsonData = SerializeJSON(jsonStruct) />
  127. <cfhttp url="#variables.apiUrl#" method="post" username="#variables.username#" password="#variables.password#" result="apiResult">
  128. <cfhttpparam type="header" name="Content-Type" value="text/json" />
  129. <cfhttpparam type="body" value="#jsonData#" />
  130. </cfhttp>
  131. <cfset assertEquals("200 SUCCESS",apiResult.statusCode) />
  132. </cffunction>
  133. <!--- DerbyEmbedded --->
  134. <cffunction name="testCreateDerbyEmbedded">
  135. <cfset var apiResult = "" />
  136. <cfset var jsonStruct = {
  137. datasource = {
  138. DerbyEmbedded = [
  139. {
  140. name = "test_derbyembedded",
  141. database = "/opt/coldfusion10/cfusion/db/test_derbyembedded",
  142. isnewdb = "true"
  143. }
  144. ]
  145. }
  146. } />
  147. <cfset var jsonData = SerializeJSON(jsonStruct) />
  148. <cfhttp url="#variables.apiUrl#" method="post" username="#variables.username#" password="#variables.password#" result="apiResult">
  149. <cfhttpparam type="header" name="Content-Type" value="text/json" />
  150. <cfhttpparam type="body" value="#jsonData#" />
  151. </cfhttp>
  152. <cfset assertEquals("200 SUCCESS",apiResult.statusCode) />
  153. </cffunction>
  154. <!--- Informix --->
  155. <cffunction name="testCreateInformix">
  156. <cfset var apiResult = "" />
  157. <cfset var jsonStruct = {
  158. datasource = {
  159. Informix = [
  160. {
  161. name = "test_infomix",
  162. host = "sql.example.com",
  163. informixserver = "infomix.example.com",
  164. database = "test",
  165. username = "test",
  166. password = "test"
  167. }
  168. ]
  169. }
  170. } />
  171. <cfset var jsonData = SerializeJSON(jsonStruct) />
  172. <cfhttp url="#variables.apiUrl#" method="post" username="#variables.username#" password="#variables.password#" result="apiResult">
  173. <cfhttpparam type="header" name="Content-Type" value="text/json" />
  174. <cfhttpparam type="body" value="#jsonData#" />
  175. </cfhttp>
  176. <cfset assertEquals("200 SUCCESS",apiResult.statusCode) />
  177. </cffunction>
  178. <!---
  179. <!--- JNDI --->
  180. <cffunction name="testCreateJNDI">
  181. <cfset var apiResult = "" />
  182. <cfset var jsonStruct = {
  183. datasource = {
  184. JNDI = [
  185. {
  186. name = "test_jndi",
  187. jndiname = "my_jndi",
  188. username = "test",
  189. password = "test"
  190. }
  191. ]
  192. }
  193. } />
  194. <cfset var jsonData = SerializeJSON(jsonStruct) />
  195. <cfhttp url="#variables.apiUrl#" method="post" username="#variables.username#" password="#variables.password#" result="apiResult">
  196. <cfhttpparam type="header" name="Content-Type" value="text/json" />
  197. <cfhttpparam type="body" value="#jsonData#" />
  198. </cfhttp>
  199. <cfset assertEquals("200 SUCCESS",apiResult.statusCode) />
  200. </cffunction>
  201. <!--- MSAccess --->
  202. <cffunction name="testCreateMSAccess">
  203. <cfset var apiResult = "" />
  204. <cfset var jsonStruct = {
  205. datasource = {
  206. MSAccess = [
  207. {
  208. name = "test_msaccess",
  209. host = "sql.example.com",
  210. database = "test",
  211. username = "test",
  212. password = "test"
  213. }
  214. ]
  215. }
  216. } />
  217. <cfset var jsonData = SerializeJSON(jsonStruct) />
  218. <cfhttp url="#variables.apiUrl#" method="post" username="#variables.username#" password="#variables.password#" result="apiResult">
  219. <cfhttpparam type="header" name="Content-Type" value="text/json" />
  220. <cfhttpparam type="body" value="#jsonData#" />
  221. </cfhttp>
  222. <cfset assertEquals("200 SUCCESS",apiResult.statusCode) />
  223. </cffunction>
  224. <!--- MSAccessUnicode --->
  225. <cffunction name="testCreateMSAccessUnicode">
  226. <cfset var apiResult = "" />
  227. <cfset var jsonStruct = {
  228. datasource = {
  229. MSAccessUnicode = [
  230. {
  231. name = "test_msaccessunicode",
  232. host = "sql.example.com",
  233. database = "test",
  234. username = "test",
  235. password = "test"
  236. }
  237. ]
  238. }
  239. } />
  240. <cfset var jsonData = SerializeJSON(jsonStruct) />
  241. <cfhttp url="#variables.apiUrl#" method="post" username="#variables.username#" password="#variables.password#" result="apiResult">
  242. <cfhttpparam type="header" name="Content-Type" value="text/json" />
  243. <cfhttpparam type="body" value="#jsonData#" />
  244. </cfhttp>
  245. <cfset assertEquals("200 SUCCESS",apiResult.statusCode) />
  246. </cffunction>
  247. --->
  248. <!--- MSSQL --->
  249. <cffunction name="testCreateMSSQL">
  250. <cfset var apiResult = "" />
  251. <cfset var jsonStruct = {
  252. datasource = {
  253. MSSql = [
  254. {
  255. name = "test_mssql",
  256. host = "sql.example.com",
  257. database = "test",
  258. username = "test",
  259. password = "test",
  260. sendStringParametersAsUnicode = true,
  261. disable_clob = false,
  262. disable_blob = false
  263. }
  264. ]
  265. }
  266. } />
  267. <cfset var jsonData = SerializeJSON(jsonStruct) />
  268. <cfhttp url="#variables.apiUrl#" method="post" username="#variables.username#" password="#variables.password#" result="apiResult">
  269. <cfhttpparam type="header" name="Content-Type" value="text/json" />
  270. <cfhttpparam type="body" value="#jsonData#" />
  271. </cfhttp>
  272. <cfset assertEquals("200 SUCCESS",apiResult.statusCode) />
  273. </cffunction>
  274. <cffunction name="testUpdateMSSQLNoChange">
  275. <cfset var apiResult1 = "" />
  276. <cfset var apiResult2 = "" />
  277. <cfset var jsonStruct = {
  278. datasource = {
  279. MSSql = [
  280. {
  281. name = "test_mssql",
  282. host = "sql.example.com",
  283. database = "test",
  284. username = "test",
  285. password = "test",
  286. sendStringParametersAsUnicode = true,
  287. disable_clob = false,
  288. disable_blob = false
  289. }
  290. ]
  291. }
  292. } />
  293. <cfset var jsonData = SerializeJSON(jsonStruct) />
  294. <cfhttp url="#variables.apiUrl#" method="post" username="#variables.username#" password="#variables.password#" result="apiResult1">
  295. <cfhttpparam type="header" name="Content-Type" value="text/json" />
  296. <cfhttpparam type="body" value="#jsonData#" />
  297. </cfhttp>
  298. <cfset assertEquals("200 SUCCESS",apiResult1.statusCode) />
  299. <cfhttp url="#variables.apiUrl#" method="post" username="#variables.username#" password="#variables.password#" result="apiResult2">
  300. <cfhttpparam type="header" name="Content-Type" value="text/json" />
  301. <cfhttpparam type="body" value="#jsonData#" />
  302. </cfhttp>
  303. <cfset assertEquals("200 SUCCESS",apiResult2.statusCode) />
  304. </cffunction>
  305. <cffunction name="testUpdateMSSQLNWithChange">
  306. <cfset var apiResult1 = "" />
  307. <cfset var apiResult2 = "" />
  308. <cfset var jsonStruct1 = {
  309. datasource = {
  310. MSSql = [
  311. {
  312. name = "test_mssql",
  313. host = "sql.example.com",
  314. database = "test",
  315. username = "test",
  316. password = "test",
  317. sendStringParametersAsUnicode = true,
  318. disable_clob = false,
  319. disable_blob = false
  320. }
  321. ]
  322. }
  323. } />
  324. <cfset var jsonData1 = SerializeJSON(jsonStruct1) />
  325. <cfset var jsonStruct2 = {
  326. datasource = {
  327. MSSql = [
  328. {
  329. name = "test_mssql",
  330. host = "sql.example.com",
  331. database = "test",
  332. username = "test",
  333. password = "test",
  334. sendStringParametersAsUnicode = true,
  335. disable_clob = true,
  336. disable_blob = true
  337. }
  338. ]
  339. }
  340. } />
  341. <cfset var jsonData2 = SerializeJSON(jsonStruct2) />
  342. <cfhttp url="#variables.apiUrl#" method="post" username="#variables.username#" password="#variables.password#" result="apiResult1">
  343. <cfhttpparam type="header" name="Content-Type" value="text/json" />
  344. <cfhttpparam type="body" value="#jsonData1#" />
  345. </cfhttp>
  346. <cfset assertEquals("200 SUCCESS",apiResult1.statusCode) />
  347. <cfhttp url="#variables.apiUrl#" method="post" username="#variables.username#" password="#variables.password#" result="apiResult2">
  348. <cfhttpparam type="header" name="Content-Type" value="text/json" />
  349. <cfhttpparam type="body" value="#jsonData2#" />
  350. </cfhttp>
  351. <cfset assertEquals("200 SUCCESS",apiResult2.statusCode) />
  352. </cffunction>
  353. <cffunction name="testUpdateMSSQLNWithPasswordChange">
  354. <cfset var apiResult1 = "" />
  355. <cfset var apiResult2 = "" />
  356. <cfset var jsonStruct1 = {
  357. datasource = {
  358. MSSql = [
  359. {
  360. name = "test_mssql",
  361. host = "sql.example.com",
  362. database = "test",
  363. username = "test",
  364. password = "test",
  365. sendStringParametersAsUnicode = true,
  366. disable_clob = false,
  367. disable_blob = false
  368. }
  369. ]
  370. }
  371. } />
  372. <cfset var jsonData1 = SerializeJSON(jsonStruct1) />
  373. <cfset var jsonStruct2 = {
  374. datasource = {
  375. MSSql = [
  376. {
  377. name = "test_mssql",
  378. host = "sql.example.com",
  379. database = "test",
  380. username = "test",
  381. password = "test2",
  382. sendStringParametersAsUnicode = true,
  383. disable_clob = false,
  384. disable_blob = false
  385. }
  386. ]
  387. }
  388. } />
  389. <cfset var jsonData2 = SerializeJSON(jsonStruct2) />
  390. <cfhttp url="#variables.apiUrl#" method="post" username="#variables.username#" password="#variables.password#" result="apiResult1">
  391. <cfhttpparam type="header" name="Content-Type" value="text/json" />
  392. <cfhttpparam type="body" value="#jsonData1#" />
  393. </cfhttp>
  394. <cfset assertEquals("200 SUCCESS",apiResult1.statusCode) />
  395. <cfhttp url="#variables.apiUrl#" method="post" username="#variables.username#" password="#variables.password#" result="apiResult2">
  396. <cfhttpparam type="header" name="Content-Type" value="text/json" />
  397. <cfhttpparam type="body" value="#jsonData2#" />
  398. </cfhttp>
  399. <cfset assertEquals("200 SUCCESS",apiResult2.statusCode) />
  400. </cffunction>
  401. <!--- MySQL5 --->
  402. <cffunction name="testCreateMySQL5">
  403. <cfset var apiResult = "" />
  404. <cfset var jsonStruct = {
  405. datasource = {
  406. MySQL5 = [
  407. {
  408. name = "test_mysql5",
  409. host = "sql.example.com",
  410. database = "test",
  411. username = "test",
  412. password = "test",
  413. disable_clob = false,
  414. disable_blob = false
  415. }
  416. ]
  417. }
  418. } />
  419. <cfset var jsonData = SerializeJSON(jsonStruct) />
  420. <cfhttp url="#variables.apiUrl#" method="post" username="#variables.username#" password="#variables.password#" result="apiResult">
  421. <cfhttpparam type="header" name="Content-Type" value="text/json" />
  422. <cfhttpparam type="body" value="#jsonData#" />
  423. </cfhttp>
  424. <cfset assertEquals("200 SUCCESS",apiResult.statusCode) />
  425. </cffunction>
  426. <cffunction name="testUpdateMySQL5NoChange">
  427. <cfset var apiResult1 = "" />
  428. <cfset var apiResult2 = "" />
  429. <cfset var jsonStruct = {
  430. datasource = {
  431. MySQL5 = [
  432. {
  433. name = "test_mysql5",
  434. host = "sql.example.com",
  435. database = "test",
  436. username = "test",
  437. password = "test",
  438. disable_clob = false,
  439. disable_blob = false
  440. }
  441. ]
  442. }
  443. } />
  444. <cfset var jsonData = SerializeJSON(jsonStruct) />
  445. <cfhttp url="#variables.apiUrl#" method="post" username="#variables.username#" password="#variables.password#" result="apiResult1">
  446. <cfhttpparam type="header" name="Content-Type" value="text/json" />
  447. <cfhttpparam type="body" value="#jsonData#" />
  448. </cfhttp>
  449. <cfset assertEquals("200 SUCCESS",apiResult1.statusCode) />
  450. <cfhttp url="#variables.apiUrl#" method="post" username="#variables.username#" password="#variables.password#" result="apiResult2">
  451. <cfhttpparam type="header" name="Content-Type" value="text/json" />
  452. <cfhttpparam type="body" value="#jsonData#" />
  453. </cfhttp>
  454. <cfset assertEquals("200 SUCCESS",apiResult2.statusCode) />
  455. </cffunction>
  456. <cffunction name="testUpdateMySQL5NWithChange">
  457. <cfset var apiResult1 = "" />
  458. <cfset var apiResult2 = "" />
  459. <cfset var jsonStruct1 = {
  460. datasource = {
  461. MySQL5 = [
  462. {
  463. name = "test_mysql5",
  464. host = "sql.example.com",
  465. database = "test",
  466. username = "test",
  467. password = "test",
  468. disable_clob = false,
  469. disable_blob = false
  470. }
  471. ]
  472. }
  473. } />
  474. <cfset var jsonData1 = SerializeJSON(jsonStruct1) />
  475. <cfset var jsonStruct2 = {
  476. datasource = {
  477. MySQL5 = [
  478. {
  479. name = "test_mysql5",
  480. host = "sql.example.com",
  481. database = "test",
  482. username = "test",
  483. password = "test",
  484. disable_clob = true,
  485. disable_blob = true
  486. }
  487. ]
  488. }
  489. } />
  490. <cfset var jsonData2 = SerializeJSON(jsonStruct2) />
  491. <cfhttp url="#variables.apiUrl#" method="post" username="#variables.username#" password="#variables.password#" result="apiResult1">
  492. <cfhttpparam type="header" name="Content-Type" value="text/json" />
  493. <cfhttpparam type="body" value="#jsonData1#" />
  494. </cfhttp>
  495. <cfset assertEquals("200 SUCCESS",apiResult1.statusCode) />
  496. <cfhttp url="#variables.apiUrl#" method="post" username="#variables.username#" password="#variables.password#" result="apiResult2">
  497. <cfhttpparam type="header" name="Content-Type" value="text/json" />
  498. <cfhttpparam type="body" value="#jsonData2#" />
  499. </cfhttp>
  500. <cfset assertEquals("200 SUCCESS",apiResult2.statusCode) />
  501. </cffunction>
  502. <cffunction name="testUpdateMySQL5NWithPasswordChange">
  503. <cfset var apiResult1 = "" />
  504. <cfset var apiResult2 = "" />
  505. <cfset var jsonStruct1 = {
  506. datasource = {
  507. MySQL5 = [
  508. {
  509. name = "test_mysql5",
  510. host = "sql.example.com",
  511. database = "test",
  512. username = "test",
  513. password = "test",
  514. disable_clob = false,
  515. disable_blob = false
  516. }
  517. ]
  518. }
  519. } />
  520. <cfset var jsonData1 = SerializeJSON(jsonStruct1) />
  521. <cfset var jsonStruct2 = {
  522. datasource = {
  523. MySQL5 = [
  524. {
  525. name = "test_mysql5",
  526. host = "sql.example.com",
  527. database = "test",
  528. username = "test",
  529. password = "test2",
  530. disable_clob = false,
  531. disable_blob = false
  532. }
  533. ]
  534. }
  535. } />
  536. <cfset var jsonData2 = SerializeJSON(jsonStruct2) />
  537. <cfhttp url="#variables.apiUrl#" method="post" username="#variables.username#" password="#variables.password#" result="apiResult1">
  538. <cfhttpparam type="header" name="Content-Type" value="text/json" />
  539. <cfhttpparam type="body" value="#jsonData1#" />
  540. </cfhttp>
  541. <cfset assertEquals("200 SUCCESS",apiResult1.statusCode) />
  542. <cfhttp url="#variables.apiUrl#" method="post" username="#variables.username#" password="#variables.password#" result="apiResult2">
  543. <cfhttpparam type="header" name="Content-Type" value="text/json" />
  544. <cfhttpparam type="body" value="#jsonData2#" />
  545. </cfhttp>
  546. <cfset assertEquals("200 SUCCESS",apiResult2.statusCode) />
  547. </cffunction>
  548. <!--- MySQL_DD --->
  549. <cffunction name="testCreateMySQL_DD">
  550. <cfset var apiResult = "" />
  551. <cfset var jsonStruct = {
  552. datasource = {
  553. MySQL_DD = [
  554. {
  555. name = "test_mysql_dd",
  556. host = "sql.example.com",
  557. database = "test",
  558. username = "test",
  559. password = "test",
  560. disable_clob = false,
  561. disable_blob = false
  562. }
  563. ]
  564. }
  565. } />
  566. <cfset var jsonData = SerializeJSON(jsonStruct) />
  567. <cfhttp url="#variables.apiUrl#" method="post" username="#variables.username#" password="#variables.password#" result="apiResult">
  568. <cfhttpparam type="header" name="Content-Type" value="text/json" />
  569. <cfhttpparam type="body" value="#jsonData#" />
  570. </cfhttp>
  571. <cfset assertEquals("200 SUCCESS",apiResult.statusCode) />
  572. </cffunction>
  573. <cffunction name="testUpdateMySQL_DDNoChange">
  574. <cfset var apiResult1 = "" />
  575. <cfset var apiResult2 = "" />
  576. <cfset var jsonStruct = {
  577. datasource = {
  578. MySQL_DD = [
  579. {
  580. name = "test_mysql_dd",
  581. host = "sql.example.com",
  582. database = "test",
  583. username = "test",
  584. password = "test",
  585. disable_clob = false,
  586. disable_blob = false
  587. }
  588. ]
  589. }
  590. } />
  591. <cfset var jsonData = SerializeJSON(jsonStruct) />
  592. <cfhttp url="#variables.apiUrl#" method="post" username="#variables.username#" password="#variables.password#" result="apiResult1">
  593. <cfhttpparam type="header" name="Content-Type" value="text/json" />
  594. <cfhttpparam type="body" value="#jsonData#" />
  595. </cfhttp>
  596. <cfset assertEquals("200 SUCCESS",apiResult1.statusCode) />
  597. <cfhttp url="#variables.apiUrl#" method="post" username="#variables.username#" password="#variables.password#" result="apiResult2">
  598. <cfhttpparam type="header" name="Content-Type" value="text/json" />
  599. <cfhttpparam type="body" value="#jsonData#" />
  600. </cfhttp>
  601. <cfset assertEquals("200 SUCCESS",apiResult2.statusCode) />
  602. </cffunction>
  603. <cffunction name="testUpdateMySQL_DDNWithChange">
  604. <cfset var apiResult1 = "" />
  605. <cfset var apiResult2 = "" />
  606. <cfset var jsonStruct1 = {
  607. datasource = {
  608. MySQL_DD = [
  609. {
  610. name = "test_mysql_dd",
  611. host = "sql.example.com",
  612. database = "test",
  613. username = "test",
  614. password = "test",
  615. disable_clob = false,
  616. disable_blob = false
  617. }
  618. ]
  619. }
  620. } />
  621. <cfset var jsonData1 = SerializeJSON(jsonStruct1) />
  622. <cfset var jsonStruct2 = {
  623. datasource = {
  624. MySQL_DD = [
  625. {
  626. name = "test_mysql_dd",
  627. host = "sql.example.com",
  628. database = "test",
  629. username = "test",
  630. password = "test",
  631. disable_clob = true,
  632. disable_blob = true
  633. }
  634. ]
  635. }
  636. } />
  637. <cfset var jsonData2 = SerializeJSON(jsonStruct2) />
  638. <cfhttp url="#variables.apiUrl#" method="post" username="#variables.username#" password="#variables.password#" result="apiResult1">
  639. <cfhttpparam type="header" name="Content-Type" value="text/json" />
  640. <cfhttpparam type="body" value="#jsonData1#" />
  641. </cfhttp>
  642. <cfset assertEquals("200 SUCCESS",apiResult1.statusCode) />
  643. <cfhttp url="#variables.apiUrl#" method="post" username="#variables.username#" password="#variables.password#" result="apiResult2">
  644. <cfhttpparam type="header" name="Content-Type" value="text/json" />
  645. <cfhttpparam type="body" value="#jsonData2#" />
  646. </cfhttp>
  647. <cfset assertEquals("200 SUCCESS",apiResult2.statusCode) />
  648. </cffunction>
  649. <cffunction name="testUpdateMySQL_DDNWithPasswordChange">
  650. <cfset var apiResult1 = "" />
  651. <cfset var apiResult2 = "" />
  652. <cfset var jsonStruct1 = {
  653. datasource = {
  654. MySQL_DD = [
  655. {
  656. name = "test_mysql_dd",
  657. host = "sql.example.com",
  658. database = "test",
  659. username = "test",
  660. password = "test",
  661. disable_clob = false,
  662. disable_blob = false
  663. }
  664. ]
  665. }
  666. } />
  667. <cfset var jsonData1 = SerializeJSON(jsonStruct1) />
  668. <cfset var jsonStruct2 = {
  669. datasource = {
  670. MySQL_DD = [
  671. {
  672. name = "test_mysql_dd",
  673. host = "sql.example.com",
  674. database = "test",
  675. username = "test",
  676. password = "test2",
  677. disable_clob = false,
  678. disable_blob = false
  679. }
  680. ]
  681. }
  682. } />
  683. <cfset var jsonData2 = SerializeJSON(jsonStruct2) />
  684. <cfhttp url="#variables.apiUrl#" method="post" username="#variables.username#" password="#variables.password#" result="apiResult1">
  685. <cfhttpparam type="header" name="Content-Type" value="text/json" />
  686. <cfhttpparam type="body" value="#jsonData1#" />
  687. </cfhttp>
  688. <cfset assertEquals("200 SUCCESS",apiResult1.statusCode) />
  689. <cfhttp url="#variables.apiUrl#" method="post" username="#variables.username#" password="#variables.password#" result="apiResult2">
  690. <cfhttpparam type="header" name="Content-Type" value="text/json" />
  691. <cfhttpparam type="body" value="#jsonData2#" />
  692. </cfhttp>
  693. <cfset assertEquals("200 SUCCESS",apiResult2.statusCode) />
  694. </cffunction>
  695. <!---
  696. <!--- ODBCSocket --->
  697. <cffunction name="testCreateODBCSocket">
  698. <cfset var apiResult = "" />
  699. <cfset var jsonStruct = {
  700. datasource = {
  701. ODBCSocket = [
  702. {
  703. name = "test_odbcsocket",
  704. host = "sql.example.com",
  705. database = "test",
  706. username = "test",
  707. password = "test"
  708. }
  709. ]
  710. }
  711. } />
  712. <cfset var jsonData = SerializeJSON(jsonStruct) />
  713. <cfhttp url="#variables.apiUrl#" method="post" username="#variables.username#" password="#variables.password#" result="apiResult">
  714. <cfhttpparam type="header" name="Content-Type" value="text/json" />
  715. <cfhttpparam type="body" value="#jsonData#" />
  716. </cfhttp>
  717. <cfset assertEquals("200 SUCCESS",apiResult.statusCode) />
  718. </cffunction>
  719. --->
  720. <!--- Oracle --->
  721. <cffunction name="testCreateOracle">
  722. <cfset var apiResult = "" />
  723. <cfset var jsonStruct = {
  724. datasource = {
  725. Oracle = [
  726. {
  727. name = "test_oracle",
  728. host = "sql.example.com",
  729. database = "test",
  730. username = "test",
  731. password = "test",
  732. sid = "ORCL",
  733. disable_clob = false,
  734. disable_blob = false
  735. }
  736. ]
  737. }
  738. } />
  739. <cfset var jsonData = SerializeJSON(jsonStruct) />
  740. <cfhttp url="#variables.apiUrl#" method="post" username="#variables.username#" password="#variables.password#" result="apiResult">
  741. <cfhttpparam type="header" name="Content-Type" value="text/json" />
  742. <cfhttpparam type="body" value="#jsonData#" />
  743. </cfhttp>
  744. <cfset assertEquals("200 SUCCESS",apiResult.statusCode) />
  745. </cffunction>
  746. <cffunction name="testUpdateOracleNoChange">
  747. <cfset var apiResult1 = "" />
  748. <cfset var apiResult2 = "" />
  749. <cfset var jsonStruct = {
  750. datasource = {
  751. Oracle = [
  752. {
  753. name = "test_oracle",
  754. host = "sql.example.com",
  755. database = "test",
  756. username = "test",
  757. password = "test",
  758. sid = "ORCL",
  759. disable_clob = false,
  760. disable_blob = false
  761. }
  762. ]
  763. }
  764. } />
  765. <cfset var jsonData = SerializeJSON(jsonStruct) />
  766. <cfhttp url="#variables.apiUrl#" method="post" username="#variables.username#" password="#variables.password#" result="apiResult1">
  767. <cfhttpparam type="header" name="Content-Type" value="text/json" />
  768. <cfhttpparam type="body" value="#jsonData#" />
  769. </cfhttp>
  770. <cfset assertEquals("200 SUCCESS",apiResult1.statusCode) />
  771. <cfhttp url="#variables.apiUrl#" method="post" username="#variables.username#" password="#variables.password#" result="apiResult2">
  772. <cfhttpparam type="header" name="Content-Type" value="text/json" />
  773. <cfhttpparam type="body" value="#jsonData#" />
  774. </cfhttp>
  775. <cfset assertEquals("200 SUCCESS",apiResult2.statusCode) />
  776. </cffunction>
  777. <cffunction name="testUpdateOracleNWithChange">
  778. <cfset var apiResult1 = "" />
  779. <cfset var apiResult2 = "" />
  780. <cfset var jsonStruct1 = {
  781. datasource = {
  782. Oracle = [
  783. {
  784. name = "test_oracle",
  785. host = "sql.example.com",
  786. database = "test",
  787. username = "test",
  788. password = "test",
  789. sid = "ORCL",
  790. disable_clob = false,
  791. disable_blob = false
  792. }
  793. ]
  794. }
  795. } />
  796. <cfset var jsonData1 = SerializeJSON(jsonStruct1) />
  797. <cfset var jsonStruct2 = {
  798. datasource = {
  799. Oracle = [
  800. {
  801. name = "test_oracle",
  802. host = "sql.example.com",
  803. database = "test",
  804. username = "test",
  805. password = "test",
  806. sid = "ORCL",
  807. disable_clob = true,
  808. disable_blob = true
  809. }
  810. ]
  811. }
  812. } />
  813. <cfset var jsonData2 = SerializeJSON(jsonStruct2) />
  814. <cfhttp url="#variables.apiUrl#" method="post" username="#variables.username#" password="#variables.password#" result="apiResult1">
  815. <cfhttpparam type="header" name="Content-Type" value="text/json" />
  816. <cfhttpparam type="body" value="#jsonData1#" />
  817. </cfhttp>
  818. <cfset assertEquals("200 SUCCESS",apiResult1.statusCode) />
  819. <cfhttp url="#variables.apiUrl#" method="post" username="#variables.username#" password="#variables.password#" result="apiResult2">
  820. <cfhttpparam type="header" name="Content-Type" value="text/json" />
  821. <cfhttpparam type="body" value="#jsonData2#" />
  822. </cfhttp>
  823. <cfset assertEquals("200 SUCCESS",apiResult2.statusCode) />
  824. </cffunction>
  825. <cffunction name="testUpdateOracleNWithPasswordChange">
  826. <cfset var apiResult1 = "" />
  827. <cfset var apiResult2 = "" />
  828. <cfset var jsonStruct1 = {
  829. datasource = {
  830. Oracle = [
  831. {
  832. name = "test_oracle",
  833. host = "sql.example.com",
  834. database = "test",
  835. username = "test",
  836. password = "test",
  837. sid = "ORCL",
  838. disable_clob = false,
  839. disable_blob = false
  840. }
  841. ]
  842. }
  843. } />
  844. <cfset var jsonData1 = SerializeJSON(jsonStruct1) />
  845. <cfset var jsonStruct2 = {
  846. datasource = {
  847. Oracle = [
  848. {
  849. name = "test_oracle",
  850. host = "sql.example.com",
  851. database = "test",
  852. username = "test",
  853. password = "test2",
  854. sid = "ORCL",
  855. disable_clob = false,
  856. disable_blob = false
  857. }
  858. ]
  859. }
  860. } />
  861. <cfset var jsonData2 = SerializeJSON(jsonStruct2) />
  862. <cfhttp url="#variables.apiUrl#" method="post" username="#variables.username#" password="#variables.password#" result="apiResult1">
  863. <cfhttpparam type="header" name="Content-Type" value="text/json" />
  864. <cfhttpparam type="body" value="#jsonData1#" />
  865. </cfhttp>
  866. <cfset assertEquals("200 SUCCESS",apiResult1.statusCode) />
  867. <cfhttp url="#variables.apiUrl#" method="post" username="#variables.username#" password="#variables.password#" result="apiResult2">
  868. <cfhttpparam type="header" name="Content-Type" value="text/json" />
  869. <cfhttpparam type="body" value="#jsonData2#" />
  870. </cfhttp>
  871. <cfset assertEquals("200 SUCCESS",apiResult2.statusCode) />
  872. </cffunction>
  873. <!---
  874. <!--- Other --->
  875. <cffunction name="testCreateOther">
  876. <cfset var apiResult = "" />
  877. <cfset var jsonStruct = {
  878. datasource = {
  879. Other = [
  880. {
  881. name = "test_other",
  882. host = "sql.example.com",
  883. database = "test",
  884. username = "test",
  885. password = "test"
  886. }
  887. ]
  888. }
  889. } />
  890. <cfset var jsonData = SerializeJSON(jsonStruct) />
  891. <cfhttp url="#variables.apiUrl#" method="post" username="#variables.username#" password="#variables.password#" result="apiResult">
  892. <cfhttpparam type="header" name="Content-Type" value="text/json" />
  893. <cfhttpparam type="body" value="#jsonData#" />
  894. </cfhttp>
  895. <cfset assertEquals("200 SUCCESS",apiResult.statusCode) />
  896. </cffunction>
  897. --->
  898. <!--- PostGreSQL --->
  899. <cffunction name="testCreatePostGreSQL">
  900. <cfset var apiResult = "" />
  901. <cfset var jsonStruct = {
  902. datasource = {
  903. PostGreSQL = [
  904. {
  905. name = "test_postgresql",
  906. host = "sql.example.com",
  907. database = "test",
  908. username = "test",
  909. password = "test"
  910. }
  911. ]
  912. }
  913. } />
  914. <cfset var jsonData = SerializeJSON(jsonStruct) />
  915. <cfhttp url="#variables.apiUrl#" method="post" username="#variables.username#" password="#variables.password#" result="apiResult">
  916. <cfhttpparam type="header" name="Content-Type" value="text/json" />
  917. <cfhttpparam type="body" value="#jsonData#" />
  918. </cfhttp>
  919. <cfset assertEquals("200 SUCCESS",apiResult.statusCode) />
  920. </cffunction>
  921. <!--- Sybase --->
  922. <cffunction name="testCreateSybase">
  923. <cfset var apiResult = "" />
  924. <cfset var jsonStruct = {
  925. datasource = {
  926. Sybase = [
  927. {
  928. name = "test_sybase",
  929. host = "sql.example.com",
  930. database = "test",
  931. username = "test",
  932. password = "test"
  933. }
  934. ]
  935. }
  936. } />
  937. <cfset var jsonData = SerializeJSON(jsonStruct) />
  938. <cfhttp url="#variables.apiUrl#" method="post" username="#variables.username#" password="#variables.password#" result="apiResult">
  939. <cfhttpparam type="header" name="Content-Type" value="text/json" />
  940. <cfhttpparam type="body" value="#jsonData#" />
  941. </cfhttp>
  942. <cfset assertEquals("200 SUCCESS",apiResult.statusCode) />
  943. </cffunction>
  944. <cffunction name="testApiCallWithMultipleSettings">
  945. <cfset var apiResult = "" />
  946. <cfset var mappingPath = GetDirectoryFromPath(ExpandPath('.')) />
  947. <cfset var jsonStruct = {
  948. runtime = {
  949. cacheProperty = [
  950. {propertyName = "TrustedCache", propertyValue = false },
  951. {propertyName = "InRequestTemplateCache", propertyValue = false },
  952. {propertyName = "ComponentCache", propertyValue = false },
  953. {propertyName = "SaveClassFiles", propertyValue = false },
  954. {propertyName = "CacheRealPath", propertyValue = false }
  955. ]
  956. },
  957. extensions = {
  958. mapping = [
  959. {mapName = "/ConfigManagerTestMapping", mapPath = mappingPath }
  960. ]
  961. }
  962. } />
  963. <cfset var jsonData = SerializeJSON(jsonStruct) />
  964. <cfhttp url="#variables.apiUrl#" method="post" username="#variables.username#" password="#variables.password#" result="apiResult">
  965. <cfhttpparam type="header" name="Content-Type" value="application/json" />
  966. <cfhttpparam type="body" value="#jsonData#" />
  967. </cfhttp>
  968. <cfset assertEquals("200 SUCCESS",apiResult.statusCode) />
  969. <cfset var expected = false />
  970. <cfset var actual = "" />
  971. <!--- get the current config --->
  972. <cfset actual = getCacheProperty("TrustedCache") />
  973. <cfset assertEquals(expected,actual,"Expected TrustedCache to be false.") />
  974. <cfset actual = getCacheProperty("InRequestTemplateCache") />
  975. <cfset assertEquals(expected,actual,"Expected InRequestTemplateCache to be false.") />
  976. <cfset actual = getCacheProperty("ComponentCache") />
  977. <cfset assertEquals(expected,actual,"Expected ComponentCache to be false.") />
  978. <cfset actual = getCacheProperty("SaveClassFiles") />
  979. <cfset assertEquals(expected,actual,"Expected SaveClassFiles to be false.") />
  980. <cfset actual = getCacheProperty("CacheRealPath") />
  981. <cfset assertEquals(expected,actual,"Expected CacheRealPath to be false.") />
  982. <cfset var mappings = getMappings() />
  983. <cfset assertTrue(StructKeyExists(mappings,"/ConfigManagerTestMapping"),"Expected /ConfigManagerTestMapping to exists.") />
  984. <cfset assertEquals(mappingPath,mappings['/ConfigManagerTestMapping'],"Expected /ConfigManagerTestMapping to point to #mappingPath#.") />
  985. </cffunction>
  986. <cffunction name="setCacheProperty" access="private">
  987. <cfargument name="propertyName" />
  988. <cfargument name="propertyValue" />
  989. <cfset var admin = CreateObject("component","cfide.adminapi.administrator") />
  990. <cfset admin.login(adminUserId=variables.username,adminPassword=variables.password) />
  991. <cfset var runtime = createObject("component","cfide.adminapi.runtime") />
  992. <cfset runtime.setCacheProperty(argumentcollection=arguments) />
  993. </cffunction>
  994. <cffunction name="getCacheProperty" access="private">
  995. <cfargument name="propertyName" />
  996. <cfset var admin = CreateObject("component","cfide.adminapi.administrator") />
  997. <cfset admin.login(adminUserId=variables.username,adminPassword=variables.password) />
  998. <cfset var runtime = createObject("component","cfide.adminapi.runtime") />
  999. <cfreturn runtime.getCacheProperty(argumentcollection=arguments) />
  1000. </cffunction>
  1001. <cffunction name="getMappings" access="private">
  1002. <cfargument name="propertyName" />
  1003. <cfset var admin = CreateObject("component","cfide.adminapi.administrator") />
  1004. <cfset admin.login(adminUserId=variables.username,adminPassword=variables.password) />
  1005. <cfset var extensions = createObject("component","cfide.adminapi.extensions") />
  1006. <cfreturn extensions.getMappings() />
  1007. </cffunction>
  1008. <cffunction name="deleteTestDatasource" access="private">
  1009. <cfargument name="dsn" />
  1010. <cfset var admin = CreateObject("component","cfide.adminapi.administrator") />
  1011. <cfset admin.login(adminUserId=variables.username,adminPassword=variables.password) />
  1012. <cfset var datasource = createObject("component","cfide.adminapi.datasource") />
  1013. <cftry>
  1014. <cfreturn datasource.deleteDatasource(dsn) />
  1015. <cfcatch type="any" />
  1016. </cftry>
  1017. </cffunction>
  1018. </cfcomponent>