aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside2/tests/QtCore/qmessageauthenticationcode_test.py
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2018-05-08 14:26:45 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2018-05-11 11:42:03 +0000
commit1e4cad1d99d873e0cab831b11829adb175324a5e (patch)
treec31d5d8c556bc9321937f70d60e125ecd1fb6e84 /sources/pyside2/tests/QtCore/qmessageauthenticationcode_test.py
parente7cf4e32902a4df5f31e96878ef7b2404a8e69f6 (diff)
Add more QtCore classes
Add QIdentityProxyModel, QLockFile, QMessageAuthenticationCode, OperatingSystemVersion and QSignalBlocker. Task-number: PYSIDE-487 Change-Id: I680c3d175394e9d560152a38195d015fc6abb7fa Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'sources/pyside2/tests/QtCore/qmessageauthenticationcode_test.py')
-rw-r--r--sources/pyside2/tests/QtCore/qmessageauthenticationcode_test.py45
1 files changed, 45 insertions, 0 deletions
diff --git a/sources/pyside2/tests/QtCore/qmessageauthenticationcode_test.py b/sources/pyside2/tests/QtCore/qmessageauthenticationcode_test.py
new file mode 100644
index 000000000..392e6f052
--- /dev/null
+++ b/sources/pyside2/tests/QtCore/qmessageauthenticationcode_test.py
@@ -0,0 +1,45 @@
+#!/usr/bin/python
+
+#############################################################################
+##
+## Copyright (C) 2018 The Qt Company Ltd.
+## Contact: https://www.qt.io/licensing/
+##
+## This file is part of the test suite of Qt for Python.
+##
+## $QT_BEGIN_LICENSE:GPL-EXCEPT$
+## Commercial License Usage
+## Licensees holding valid commercial Qt licenses may use this file in
+## accordance with the commercial license agreement provided with the
+## Software or, alternatively, in accordance with the terms contained in
+## a written agreement between you and The Qt Company. For licensing terms
+## and conditions see https://www.qt.io/terms-conditions. For further
+## information use the contact form at https://www.qt.io/contact-us.
+##
+## GNU General Public License Usage
+## Alternatively, this file may be used under the terms of the GNU
+## General Public License version 3 as published by the Free Software
+## Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
+## included in the packaging of this file. Please review the following
+## information to ensure the GNU General Public License requirements will
+## be met: https://www.gnu.org/licenses/gpl-3.0.html.
+##
+## $QT_END_LICENSE$
+##
+#############################################################################
+
+'''Test cases for QMessageAuthenticationCode'''
+
+import unittest
+
+from PySide2.QtCore import QCryptographicHash, QMessageAuthenticationCode
+
+class TestQMessageAuthenticationCode (unittest.TestCase):
+ def test(self):
+ code = QMessageAuthenticationCode(QCryptographicHash.Sha1, 'bla')
+ result = code.result()
+ self.assertTrue(result.size() > 0)
+ print(result.toHex())
+
+if __name__ == '__main__':
+ unittest.main()