//----------------------------------------------------------------------------- // Copyright (c) 2018, 2022, Oracle and/or its affiliates. // // This software is dual-licensed to you under the Universal Permissive License // (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl and Apache License // 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose // either license. // // If you elect to accept the software under the Apache License, Version 2.0, // the following applies: // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // https://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. //----------------------------------------------------------------------------- //----------------------------------------------------------------------------- // test_3800_soda_doc_cursor.c // Test suite for testing SODA Document Cursor Functions. //----------------------------------------------------------------------------- #include "TestLib.h" //----------------------------------------------------------------------------- // dpiTest__dropCollection() // Drops the collection and verifies that it was actually dropped. //----------------------------------------------------------------------------- int dpiTest__dropCollection(dpiTestCase *testCase, dpiSodaDb *db, const char *collName) { dpiSodaColl *coll; int isDropped; if (dpiSodaDb_openCollection(db, collName, strlen(collName), DPI_SODA_FLAGS_DEFAULT, &coll) < 0) return dpiTestCase_setFailedFromError(testCase); if (dpiSodaColl_drop(coll, DPI_SODA_FLAGS_DEFAULT, &isDropped) < 0) return dpiTestCase_setFailedFromError(testCase); if (dpiTestCase_expectUintEqual(testCase, isDropped, 1) < 0) return DPI_FAILURE; if (dpiSodaColl_release(coll) < 0) return dpiTestCase_setFailedFromError(testCase); return DPI_SUCCESS; } //----------------------------------------------------------------------------- // dpiTest_3800_nullHandle() // Call all public document cursor functions with NULL argument and verify. //----------------------------------------------------------------------------- int dpiTest_3800_nullHandle(dpiTestCase *testCase, dpiTestParams *params) { const char *expectedError = "DPI-1002:"; dpiSodaDocCursor_addRef(NULL); if (dpiTestCase_expectError(testCase, expectedError) < 0) return DPI_FAILURE; dpiSodaDocCursor_getNext(NULL, DPI_SODA_FLAGS_DEFAULT, NULL); if (dpiTestCase_expectError(testCase, expectedError) < 0) return DPI_FAILURE; dpiSodaDocCursor_release(NULL); if (dpiTestCase_expectError(testCase, expectedError) < 0) return DPI_FAILURE; return DPI_SUCCESS; } //----------------------------------------------------------------------------- // dpiTest_3801_addRef() // verify dpiSodaDocCursor_addRef() increments the reference count as // expected. //----------------------------------------------------------------------------- int dpiTest_3801_addRef(dpiTestCase *testCase, dpiTestParams *params) { const char *collName = "ODPIC_COLL_2901"; dpiSodaDocCursor *cursor; dpiSodaColl *coll; dpiSodaDb *db; if (dpiTestCase_getSodaDb(testCase, &db) < 0) return DPI_FAILURE; if (dpiSodaDb_createCollection(db, collName, strlen(collName), NULL, 0, DPI_SODA_FLAGS_DEFAULT, &coll) < 0) return dpiTestCase_setFailedFromError(testCase); if (dpiSodaColl_find(coll, NULL, DPI_SODA_FLAGS_DEFAULT, &cursor) < 0) return dpiTestCase_setFailedFromError(testCase); if (dpiSodaDocCursor_addRef(cursor) < 0) return dpiTestCase_setFailedFromError(testCase); if (dpiSodaDocCursor_release(cursor) < 0) return dpiTestCase_setFailedFromError(testCase); if (dpiSodaDocCursor_release(cursor) < 0) return dpiTestCase_setFailedFromError(testCase); dpiSodaDocCursor_release(cursor); if (dpiTestCase_expectError(testCase, "DPI-1002:") < 0) return DPI_FAILURE; // cleanup if (dpiTestCase_cleanupSodaColl(testCase, coll) < 0) return DPI_FAILURE; if (dpiSodaDb_release(db) < 0) return dpiTestCase_setFailedFromError(testCase); return DPI_SUCCESS; } //----------------------------------------------------------------------------- // main() //----------------------------------------------------------------------------- int main(int argc, char **argv) { dpiTestSuite_initialize(3800); dpiTestSuite_addCase(dpiTest_3800_nullHandle, "call all functions with NULL handle"); dpiTestSuite_addCase(dpiTest_3801_addRef, "dpiSodaDocCursor_addRef() with valid parameters"); return dpiTestSuite_run(); }