1 Star 0 Fork 2

siwefe/python-oracledb

Create your Gitee Account
Explore and code with more than 14 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
test_7300_unsupported_features_thin.py 2.62 KB
Copy Edit Raw Blame History
# -----------------------------------------------------------------------------
# Copyright (c) 2024, 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.
# -----------------------------------------------------------------------------
"""
7300 - Module for testing unsupported features in Thin mode
"""
import unittest
import oracledb
import test_env
@unittest.skipUnless(test_env.get_is_thin(), "only relevant in thin mode")
class TestCase(test_env.BaseTestCase):
def test_7300(self):
"7300 - test getting and setting thick attributes"
pool = test_env.get_pool()
with self.assertRaisesFullCode("DPY-3001"):
pool.soda_metadata_cache
with self.assertRaisesFullCode("DPY-3001"):
pool.soda_metadata_cache = True
with self.assertRaisesFullCode("DPY-3001"):
pool.max_sessions_per_shard
with self.assertRaisesFullCode("DPY-3001"):
pool.max_sessions_per_shard = 2
def test_7301(self):
"7301 - test using a scrollable cursor"
with self.assertRaisesFullCode("DPY-3001"):
self.cursor.scroll(mode="last")
def test_7302(self):
"7302 - test connection with sharding and supersharding keys"
with self.assertRaisesFullCode("DPY-3001"):
test_env.get_connection(shardingkey=[27])
with self.assertRaisesFullCode("DPY-3001"):
test_env.get_connection(supershardingkey=[17, 23])
def test_7303(self):
"7303 - test connect() without a connect string (bequeath)"
with self.assertRaisesFullCode("DPY-3001"):
oracledb.connect(
user=test_env.get_main_user(),
password=test_env.get_main_password(),
)
if __name__ == "__main__":
test_env.run_test_cases()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/siwefe/python-oracledb.git
git@gitee.com:siwefe/python-oracledb.git
siwefe
python-oracledb
python-oracledb
main

Search