1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458
|
# *****************************************************************************
#
# 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
#
# http://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.
#
# See NOTICE file for details.
#
# *****************************************************************************
import _jpype
import jpype
from jpype.types import *
import common
import jpype.protocol as proto
class HintsTestCase(common.JPypeTestCase):
def testCache(self):
cls = JClass('java.lang.Object')
hints = cls._hints
hints2 = cls._hints
self.assertEqual(hints, hints2)
def testProtocol(self):
protocol = jpype.protocol.SupportsFloat
annot = protocol.__float__.__annotations__
self.assertEqual(annot['return'], float)
protocol = jpype.protocol.SupportsIndex
annot = protocol.__index__.__annotations__
self.assertEqual(annot['return'], int)
self.assertTrue(hasattr(proto, "Sequence"))
self.assertTrue(hasattr(proto, "Mapping"))
self.assertTrue(hasattr(proto, "Protocol"))
def testObject(self):
cls = JClass('java.lang.Object')
hints = cls._hints
self.assertTrue(cls in hints.returns)
self.assertTrue(cls in hints.exact)
self.assertTrue(str in hints.implicit)
self.assertTrue(bool in hints.implicit)
self.assertTrue(proto.SupportsIndex in hints.implicit)
self.assertTrue(proto.SupportsFloat in hints.implicit)
self.assertTrue(proto._JClass in hints.implicit)
self.assertTrue(len(hints.explicit) == 0)
self.assertTrue(len(hints.none) == 0)
def testNumber(self):
cls = JClass('java.lang.Number')
hints = cls._hints
self.assertTrue(cls in hints.returns)
self.assertTrue(proto._JNumberLong in hints.implicit)
self.assertTrue(proto._JNumberFloat in hints.implicit)
self.assertTrue(proto.SupportsIndex in hints.implicit)
self.assertTrue(proto.SupportsFloat in hints.implicit)
self.assertTrue(len(hints.explicit) == 0)
self.assertTrue(len(hints.none) == 0)
def testString(self):
cls = JClass('java.lang.String')
hints = cls._hints
self.assertTrue(cls in hints.returns)
self.assertTrue(cls in hints.exact)
self.assertTrue(str in hints.implicit)
self.assertTrue(len(hints.explicit) == 0)
self.assertTrue(len(hints.none) == 0)
def testClass(self):
cls = JClass('java.lang.Class')
hints = cls._hints
self.assertTrue(cls in hints.returns)
self.assertTrue(cls in hints.exact)
self.assertTrue(proto._JClass in hints.implicit)
self.assertTrue(len(hints.explicit) == 0)
self.assertTrue(len(hints.none) == 0)
def testCollection(self):
cls = JClass('java.util.Collection')
hints = cls._hints
self.assertTrue(cls in hints.returns)
self.assertTrue(cls in hints.exact)
self.assertTrue(proto.Sequence in hints.implicit)
self.assertTrue(len(hints.explicit) == 0)
self.assertTrue(str in hints.none)
def testList(self):
cls = JClass('java.util.List')
hints = cls._hints
self.assertTrue(cls in hints.returns)
self.assertTrue(cls in hints.exact)
self.assertTrue(len(hints.implicit) == 0)
self.assertTrue(len(hints.explicit) == 0)
self.assertTrue(len(hints.none) == 0)
def testJBoolean(self):
cls = JBoolean
hints = cls._hints
self.assertTrue(bool in hints.returns)
self.assertTrue(bool in hints.exact)
self.assertTrue(cls in hints.exact)
self.assertTrue(JClass("java.lang.Boolean") in hints.implicit)
self.assertTrue(proto.SupportsIndex in hints.explicit)
self.assertTrue(proto.SupportsFloat in hints.explicit)
self.assertTrue(len(hints.none) == 0)
def testJChar(self):
cls = JChar
hints = cls._hints
self.assertTrue(cls in hints.returns)
self.assertTrue(cls in hints.exact)
self.assertTrue(JClass("java.lang.Character") in hints.implicit)
self.assertTrue(str in hints.implicit)
self.assertTrue(len(hints.explicit) == 0)
self.assertTrue(len(hints.none) == 0)
def testJShort(self):
cls = JShort
hints = cls._hints
self.assertTrue(cls in hints.returns)
self.assertTrue(cls in hints.exact)
self.assertTrue(JByte in hints.implicit)
self.assertTrue(JChar in hints.implicit)
self.assertTrue(JClass("java.lang.Short") in hints.implicit)
self.assertTrue(proto.SupportsIndex in hints.implicit)
self.assertTrue(proto.SupportsFloat in hints.explicit)
self.assertTrue(len(hints.none) == 0)
def testJInt(self):
cls = JInt
hints = cls._hints
self.assertTrue(cls in hints.returns)
self.assertTrue(cls in hints.exact)
self.assertTrue(JByte in hints.implicit)
self.assertTrue(JChar in hints.implicit)
self.assertTrue(JShort in hints.implicit)
self.assertTrue(JClass('java.lang.Integer') in hints.implicit)
self.assertTrue(proto.SupportsIndex in hints.implicit)
self.assertTrue(proto.SupportsFloat in hints.explicit)
self.assertTrue(len(hints.none) == 0)
def testJLong(self):
cls = JLong
hints = cls._hints
self.assertTrue(cls in hints.returns)
self.assertTrue(cls in hints.exact)
self.assertTrue(JByte in hints.implicit)
self.assertTrue(JChar in hints.implicit)
self.assertTrue(JShort in hints.implicit)
self.assertTrue(JInt in hints.implicit)
self.assertTrue(JClass('java.lang.Long') in hints.implicit)
self.assertTrue(proto.SupportsIndex in hints.implicit)
self.assertTrue(proto.SupportsFloat in hints.explicit)
self.assertTrue(len(hints.none) == 0)
def testJFloat(self):
cls = JFloat
hints = cls._hints
self.assertTrue(cls in hints.returns)
self.assertTrue(cls in hints.exact)
self.assertTrue(JByte in hints.implicit)
self.assertTrue(JChar in hints.implicit)
self.assertTrue(JShort in hints.implicit)
self.assertTrue(JInt in hints.implicit)
self.assertTrue(JLong in hints.implicit)
self.assertTrue(JClass('java.lang.Float') in hints.implicit)
self.assertTrue(int in hints.implicit)
self.assertTrue(proto.SupportsIndex in hints.implicit)
self.assertTrue(proto.SupportsFloat in hints.implicit)
self.assertTrue(len(hints.explicit) == 0)
self.assertTrue(len(hints.none) == 0)
def testJDouble(self):
cls = JDouble
hints = cls._hints
self.assertTrue(cls in hints.returns)
self.assertTrue(cls in hints.exact)
self.assertTrue(JByte in hints.implicit)
self.assertTrue(JChar in hints.implicit)
self.assertTrue(JShort in hints.implicit)
self.assertTrue(JInt in hints.implicit)
self.assertTrue(JLong in hints.implicit)
self.assertTrue(JFloat in hints.implicit)
self.assertTrue(JClass('java.lang.Double') in hints.implicit)
self.assertTrue(proto.SupportsIndex in hints.implicit)
self.assertTrue(proto.SupportsFloat in hints.implicit)
self.assertTrue(int in hints.implicit)
self.assertTrue(len(hints.explicit) == 0)
self.assertTrue(len(hints.none) == 0)
def testBoxedByte(self):
cls = JClass('java.lang.Byte')
hints = cls._hints
self.assertTrue(cls in hints.returns)
self.assertTrue(cls in hints.exact)
self.assertTrue(JByte in hints.implicit)
self.assertTrue(proto.SupportsFloat in hints.explicit)
self.assertTrue(JClass('java.lang.Byte') in hints.explicit)
self.assertTrue(proto.SupportsIndex in hints.explicit)
self.assertTrue(len(hints.none) == 0)
def testBoxedBoolean(self):
cls = JClass('java.lang.Boolean')
hints = cls._hints
self.assertTrue(cls in hints.returns)
self.assertTrue(cls in hints.exact)
self.assertTrue(bool in hints.implicit)
self.assertTrue(JBoolean in hints.implicit)
self.assertTrue(proto.SupportsIndex in hints.explicit)
self.assertTrue(proto.SupportsFloat in hints.explicit)
self.assertTrue(JClass('java.lang.Boolean') in hints.explicit)
self.assertTrue(len(hints.none) == 0)
def testBoxedCharacter(self):
cls = JClass('java.lang.Character')
hints = cls._hints
self.assertTrue(cls in hints.returns)
self.assertTrue(cls in hints.exact)
self.assertTrue(JChar in hints.implicit)
self.assertTrue(JClass('java.lang.Character') in hints.explicit)
self.assertTrue(str in hints.explicit)
self.assertTrue(len(hints.none) == 0)
def testBoxedShort(self):
cls = JClass('java.lang.Short')
hints = cls._hints
self.assertTrue(cls in hints.returns)
self.assertTrue(cls in hints.exact)
self.assertTrue(JShort in hints.implicit)
self.assertTrue(proto.SupportsFloat in hints.explicit)
self.assertTrue(JByte in hints.explicit)
self.assertTrue(JChar in hints.explicit)
self.assertTrue(JClass('java.lang.Short') in hints.explicit)
self.assertTrue(proto.SupportsIndex in hints.explicit)
self.assertTrue(len(hints.none) == 0)
def testBoxedInteger(self):
cls = JClass('java.lang.Integer')
hints = cls._hints
self.assertTrue(cls in hints.returns)
self.assertTrue(cls in hints.exact)
self.assertTrue(JInt in hints.implicit)
self.assertTrue(proto.SupportsFloat in hints.explicit)
self.assertTrue(JByte in hints.explicit)
self.assertTrue(JChar in hints.explicit)
self.assertTrue(JShort in hints.explicit)
self.assertTrue(JClass('java.lang.Integer') in hints.explicit)
self.assertTrue(proto.SupportsIndex in hints.explicit)
self.assertTrue(len(hints.none) == 0)
def testBoxedLong(self):
cls = JClass('java.lang.Long')
hints = cls._hints
self.assertTrue(cls in hints.returns)
self.assertTrue(cls in hints.exact)
self.assertTrue(JLong in hints.implicit)
self.assertTrue(proto.SupportsFloat in hints.explicit)
self.assertTrue(JByte in hints.explicit)
self.assertTrue(JChar in hints.explicit)
self.assertTrue(JShort in hints.explicit)
self.assertTrue(JInt in hints.explicit)
self.assertTrue(JClass('java.lang.Long') in hints.explicit)
self.assertTrue(proto.SupportsIndex in hints.explicit)
self.assertTrue(len(hints.none) == 0)
def testBoxedFloat(self):
cls = JClass('java.lang.Float')
hints = cls._hints
self.assertTrue(cls in hints.returns)
self.assertTrue(cls in hints.exact)
self.assertTrue(JFloat in hints.implicit)
self.assertTrue(JByte in hints.explicit)
self.assertTrue(JChar in hints.explicit)
self.assertTrue(JShort in hints.explicit)
self.assertTrue(JInt in hints.explicit)
self.assertTrue(JLong in hints.explicit)
self.assertTrue(JClass('java.lang.Float') in hints.explicit)
self.assertTrue(int in hints.explicit)
self.assertTrue(proto.SupportsIndex in hints.explicit)
self.assertTrue(proto.SupportsFloat in hints.explicit)
self.assertTrue(len(hints.none) == 0)
def testBoxedDouble(self):
cls = JClass('java.lang.Double')
hints = cls._hints
self.assertTrue(cls in hints.returns)
self.assertTrue(cls in hints.exact)
self.assertTrue(JDouble in hints.implicit)
self.assertTrue(JByte in hints.explicit)
self.assertTrue(JChar in hints.explicit)
self.assertTrue(JShort in hints.explicit)
self.assertTrue(JInt in hints.explicit)
self.assertTrue(JLong in hints.explicit)
self.assertTrue(JFloat in hints.explicit)
self.assertTrue(JClass('java.lang.Double') in hints.explicit)
self.assertTrue(proto.SupportsIndex in hints.explicit)
self.assertTrue(proto.SupportsFloat in hints.explicit)
self.assertTrue(int in hints.explicit)
self.assertTrue(len(hints.none) == 0)
def testObjectArray(self):
cls = JClass('java.lang.Object[]')
hints = cls._hints
self.assertTrue(cls in hints.returns)
self.assertTrue(cls in hints.exact)
self.assertTrue(proto.Sequence in hints.implicit)
self.assertTrue(len(hints.explicit) == 0)
self.assertTrue(str in hints.none)
def testBooleanArray(self):
cls = JClass('boolean[]')
hints = cls._hints
self.assertTrue(cls in hints.returns)
self.assertTrue(cls in hints.exact)
self.assertTrue(proto.Sequence in hints.implicit)
self.assertTrue(len(hints.explicit) == 0)
self.assertTrue(str in hints.none)
def testCharArray(self):
cls = JClass('char[]')
hints = cls._hints
self.assertTrue(cls in hints.returns)
self.assertTrue(cls in hints.exact)
self.assertTrue(str in hints.implicit)
self.assertTrue(proto.Sequence in hints.implicit)
self.assertTrue(len(hints.explicit) == 0)
self.assertTrue(len(hints.none) == 0)
def testShortArray(self):
cls = JClass('short[]')
hints = cls._hints
self.assertTrue(cls in hints.returns)
self.assertTrue(cls in hints.exact)
self.assertTrue(proto.Sequence in hints.implicit)
self.assertTrue(len(hints.explicit) == 0)
self.assertTrue(str in hints.none)
def testIntArray(self):
cls = JClass('int[]')
hints = cls._hints
self.assertTrue(cls in hints.returns)
self.assertTrue(cls in hints.exact)
self.assertTrue(proto.Sequence in hints.implicit)
self.assertTrue(len(hints.explicit) == 0)
self.assertTrue(str in hints.none)
def testLongArray(self):
cls = JClass('long[]')
hints = cls._hints
self.assertTrue(cls in hints.returns)
self.assertTrue(cls in hints.exact)
self.assertTrue(proto.Sequence in hints.implicit)
self.assertTrue(len(hints.explicit) == 0)
self.assertTrue(str in hints.none)
def testFloatArray(self):
cls = JClass('float[]')
hints = cls._hints
self.assertTrue(cls in hints.returns)
self.assertTrue(cls in hints.exact)
self.assertTrue(proto.Sequence in hints.implicit)
self.assertTrue(len(hints.explicit) == 0)
self.assertTrue(str in hints.none)
def testDoubleArray(self):
cls = JClass('double[]')
hints = cls._hints
self.assertTrue(cls in hints.returns)
self.assertTrue(cls in hints.exact)
self.assertTrue(proto.Sequence in hints.implicit)
self.assertTrue(len(hints.explicit) == 0)
self.assertTrue(str in hints.none)
def testPath(self):
cls = JClass('java.nio.file.Path')
hints = cls._hints
self.assertTrue(cls in hints.returns)
self.assertTrue(cls in hints.exact)
self.assertTrue(proto.SupportsPath in hints.implicit)
self.assertTrue(len(hints.explicit) == 0)
self.assertTrue(len(hints.none) == 0)
def testFile(self):
cls = JClass('java.io.File')
hints = cls._hints
self.assertTrue(cls in hints.returns)
self.assertTrue(cls in hints.exact)
self.assertTrue(proto.SupportsPath in hints.implicit)
self.assertTrue(len(hints.explicit) == 0)
self.assertTrue(len(hints.none) == 0)
def testInstant(self):
import datetime
cls = JClass('java.time.Instant')
hints = cls._hints
self.assertTrue(cls in hints.returns)
self.assertTrue(cls in hints.exact)
self.assertTrue(datetime.datetime in hints.implicit)
self.assertTrue(len(hints.explicit) == 0)
self.assertTrue(len(hints.none) == 0)
def testDate(self):
cls = JClass("java.sql.Date")
d = cls(120, 0, 5)
d2 = d._py()
d3 = JObject(d2, cls)
self.assertEqual(d, d2)
self.assertEqual(d, d3)
def testTimestamp(self):
cls = JClass("java.sql.Timestamp")
d = cls(120, 0, 5, 9, 22, 51, 123456000)
d2 = d._py()
d3 = JObject(d2, cls)
self.assertEqual(d, d2)
self.assertEqual(d, d3)
def testTime(self):
cls = JClass("java.sql.Time")
d = cls(11, 53, 1)
d2 = d._py()
d3 = JObject(d2, cls)
self.assertEqual(d, d2)
self.assertEqual(d, d3)
def testBigDecimal(self):
cls = JClass("java.math.BigDecimal")
d = cls('1000234600000000000000')
d2 = d._py()
d3 = JObject(d2, cls)
self.assertEqual(d, d2)
self.assertEqual(d, d3)
def testAddTypeBad(self):
cls = JClass('java.lang.Object')
with self.assertRaises(TypeError):
cls._hints._addTypeConversion()
with self.assertRaisesRegex(TypeError, "callable method is required"):
cls._hints._addTypeConversion(object, object(), True)
with self.assertRaisesRegex(TypeError, "type or protocol is required"):
def foo():
pass
cls._hints._addTypeConversion(object(), foo, True)
def testExcludeBad(self):
cls = JClass('java.lang.Object')
with self.assertRaisesRegex(TypeError, "type or protocol is required, not 'object'"):
cls._hints._excludeConversion(object())
with self.assertRaisesRegex(TypeError, "type or protocol is required, not 'object'"):
cls._hints._excludeConversion((object(),))
|