forked from samba-team/samba
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
r9834: More tests for the upgrade from Samba3
(This used to be commit d2db164)
- Loading branch information
Showing
5 changed files
with
126 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
#!/usr/bin/env smbscript | ||
/* Verifies that the data present in this directory | ||
Can be read correctly by Samba4. Do not update | ||
without changing the corresponding TDB file! | ||
Written by Jelmer Vernooij, 2005. | ||
*/ | ||
|
||
libinclude("base.js"); | ||
|
||
var path = substr(ARGV[0], 0, -strlen("verify")); | ||
printf("Reading from %s\n", path); | ||
|
||
var s = samba3_read(path, path+"smb.conf"); | ||
assert(s != undefined); | ||
|
||
// smb.conf checks | ||
assert(s.configuration.get("passdb backend") != undefined); | ||
|
||
var data = s.configuration.data(); | ||
assert(data != undefined); | ||
var global = data["global"]; | ||
assert(global != undefined); | ||
assert(global["passdb backend"] == s.configuration.get("passdb backend")); | ||
assert(global["passdb backend"] != undefined); | ||
|
||
println("smb.conf ok"); | ||
|
||
assert(s.winsentries.length == 22); | ||
assert(s.samaccounts.length == 3); | ||
assert(s.shares.length == 0); | ||
assert(s.registry.keys.length == 28); | ||
assert(s.groupmappings.length == 13); | ||
assert(s.aliases.length == 0); | ||
assert(s.idmapdb.mappings.length == 4); | ||
|
||
println("database entry count correct"); | ||
|
||
// account policies | ||
assert(s.policy.min_password_length == 5); | ||
assert(s.policy.minimum_password_age == 0); | ||
assert(s.policy.maximum_password_age == 999999999); | ||
assert(s.policy.refuse_machine_password_change == 0); | ||
assert(s.policy.reset_count_minutes == 0); | ||
assert(s.policy.disconnect_time == -1); | ||
assert(s.policy.user_must_logon_to_change_password == 0); | ||
assert(s.policy.password_history == 0); | ||
assert(s.policy.lockout_duration == 0); | ||
assert(s.policy.bad_lockout_minutes == 0); | ||
|
||
println("account policies ok"); | ||
|