mirror of
https://gitlab.gnome.org/GNOME/libsecret.git
synced 2024-12-22 04:38:55 +00:00
b72048c920
Allow parallel building and testing by using a single Makefile.am Implement parallel testing using TAP, with various drivers and compilers living in the build/ directory. Fix all sorts of issues that this caused, including builddir != srcdir, leaks in tests and so on. It would have been nice to break out all the above into separate commits ... blush.
29 lines
1022 B
Python
29 lines
1022 B
Python
#!/usr/bin/env python
|
|
|
|
#
|
|
# Copyright 2012 Red Hat Inc.
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Lesser General Public License as published
|
|
# by the Free Software Foundation; either version 2.1 of the licence or (at
|
|
# your option) any later version.
|
|
#
|
|
# See the included COPYING file for more information.
|
|
#
|
|
|
|
import dbus
|
|
import mock
|
|
import sys
|
|
|
|
service = mock.SecretService()
|
|
service.add_standard_objects()
|
|
|
|
collection = mock.SecretCollection(service, "lockone", locked=False, confirm=False)
|
|
mock.SecretItem(collection, "item", attributes={ "number": "1", "string": "one", "even": "false" }, secret="uno")
|
|
mock.SecretItem(collection, "confirm", attributes={ "number": "2", "string": "two", "even": "true" }, secret="dos", confirm=True)
|
|
|
|
collection = mock.SecretCollection(service, "lockprompt", locked=True, confirm=True)
|
|
mock.SecretItem(collection, "locked", attributes={ "number": "3", "string": "three", "even": "false" }, secret="tres")
|
|
|
|
service.listen()
|