s3:smbd: s/event_add_fd/tevent_add_fd and s/EVENT_FD_/TEVENT_FD_
[Samba/gebeck_regimport.git] / source4 / torture / libnet / python / samr-test.py
blobfcd31c4b02ff5e3666ea73a408c5fbb03b8a7a3f
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
4 # Unix SMB/CIFS implementation.
5 # Copyright (C) Kamen Mazdrashki <kamen.mazdrashki@postpath.com> 2009
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
22 # Usage:
23 # export ACCOUNT_NAME=kamen
24 # export NEW_PASS=test
25 # export SUBUNITRUN=$samba4srcdir/scripting/bin/subunitrun
26 # PYTHONPATH="$samba4srcdir/torture/libnet/python" $SUBUNITRUN samr-test -Ukma-exch.devel/Administrator%333
29 import os
31 from samba import net
32 import samba.tests
34 if not "ACCOUNT_NAME" in os.environ.keys():
35 raise Exception("Please supply ACCOUNT_NAME in environment")
37 if not "NEW_PASS" in os.environ.keys():
38 raise Exception("Please supply NEW_PASS in environment")
40 account_name = os.environ["ACCOUNT_NAME"]
41 new_pass = os.environ["NEW_PASS"]
44 # Tests start here
47 class Libnet_SetPwdTest(samba.tests.TestCase):
49 ########################################################################################
51 def test_SetPassword(self):
52 creds = self.get_credentials()
53 net.SetPassword(account_name=account_name,
54 domain_name=creds.get_domain(),
55 newpassword=new_pass,
56 credentials=creds)
58 ########################################################################################