s4-libnet: Simple test for net.SetPassword() python binding
[abartlet/samba.git/.git] / source4 / torture / libnet / python / samr-test.py
1 #!/usr/bin/python
2 # -*- coding: utf-8 -*-
3 #
4 # Unix SMB/CIFS implementation.
5 # Copyright (C) Kamen Mazdrashki <kamen.mazdrashki@postpath.com> 2009
6 #
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.
11 #
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.
16 #
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/>.
19 #
20
21 #
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
27 #
28
29 import sys
30 import os
31
32 from samba import net
33 import unittest
34 import samba.tests
35
36 if not "ACCOUNT_NAME" in os.environ.keys():
37     parser.error("Please supply ACCOUNT_NAME in environment")
38
39 if not "NEW_PASS" in os.environ.keys():
40     parser.error("Please supply NEW_PASS in environment")
41
42 account_name = os.environ["ACCOUNT_NAME"]
43 new_pass = os.environ["NEW_PASS"]
44
45 creds = samba.tests.cmdline_credentials
46
47 #
48 # Tests start here
49 #
50
51 class Libnet_SetPwdTest(unittest.TestCase):
52
53     ########################################################################################
54
55     def test_SetPassword(self):
56         net.SetPassword(account_name=account_name,
57                         domain_name=creds.get_domain(),
58                         newpassword=new_pass,
59                         credentials=creds)
60
61     ########################################################################################
62