~ubuntu-branches/ubuntu/vivid/samba/vivid

« back to all changes in this revision

Viewing changes to testprogs/win32/spoolss/torture.c

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2011-12-21 13:18:04 UTC
  • mfrom: (0.39.21 sid)
  • Revision ID: package-import@ubuntu.com-20111221131804-xtlr39wx6njehxxr
Tags: 2:3.6.1-3ubuntu1
* Merge from Debian testing.  Remaining changes:
  + debian/patches/VERSION.patch:
    - set SAMBA_VERSION_SUFFIX to Ubuntu.
  + debian/patches/error-trans.fix-276472:
    - Add the translation of Unix Error code -ENOTSUP to NT Error Code
    - NT_STATUS_NOT_SUPPORTED to prevent the Permission denied error.
  + debian/smb.conf:
    - add "(Samba, Ubuntu)" to server string.
    - comment out the default [homes] share, and add a comment about
      "valid users = %S" to show users how to restrict access to
      \\server\username to only username.
    - Set 'usershare allow guests', so that usershare admins are 
      allowed to create public shares in addition to authenticated
      ones.
    - add map to guest = Bad user, maps bad username to guest access.
  + debian/samba-common.config:
    - Do not change priority to high if dhclient3 is installed.
    - Use priority medium instead of high for the workgroup question.
  + debian/control:
    - Don't build against or suggest ctdb.
    - Add dependency on samba-common-bin to samba.
  + Add ufw integration:
    - Created debian/samba.ufw.profile
    - debian/rules, debian/samba.dirs, debian/samba.files: install
      profile
    - debian/control: have samba suggest ufw
  + Add apport hook:
    - Created debian/source_samba.py.
    - debian/rules, debian/samba.dirs, debian/samba-common-bin.files: install
  + Switch to upstart:
    - Add debian/samba.{nmbd,smbd}.upstart.
  + debian/samba.logrotate, debian/samba-common.dhcp, debian/samba.if-up:
    - Make them upstart compatible
  + debian/samba.postinst: 
    - Avoid scary pdbedit warnings on first import.
  + debian/samba-common.postinst: Add more informative error message for
    the case where smb.conf was manually deleted
  + debian/patches/fix-debuglevel-name-conflict.patch: don't use 'debug_level'
    as a global variable name in an NSS module 
  + Dropped:
    - debian/patches/error-trans.fix-276472
    - debian/patches/fix-debuglevel-name-conflict.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
   Unix SMB/CIFS implementation.
 
3
   SMB torture UI functions
 
4
 
 
5
   Copyright (C) Jelmer Vernooij 2006
 
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
#include "testspoolss.h"
 
22
#include "torture.h"
 
23
 
 
24
/****************************************************************************
 
25
****************************************************************************/
 
26
 
 
27
void torture_warning(struct torture_context *context, const char *comment, ...)
 
28
{
 
29
        va_list ap;
 
30
        char tmp[1024];
 
31
 
 
32
#if 0
 
33
        if (!context->results->ui_ops->warning)
 
34
                return;
 
35
#endif
 
36
 
 
37
        va_start(ap, comment);
 
38
        if (vsprintf(tmp, comment, ap) == -1) {
 
39
                return;
 
40
        }
 
41
        va_end(ap);
 
42
 
 
43
        fprintf(stderr, "WARNING: %s\n", tmp);
 
44
#if 0
 
45
        context->results->ui_ops->warning(context, tmp);
 
46
 
 
47
        free(tmp);
 
48
#endif
 
49
}
 
50
 
 
51
/****************************************************************************
 
52
****************************************************************************/
 
53
 
 
54
void torture_result(struct torture_context *context,
 
55
                    enum torture_result result, const char *fmt, ...)
 
56
{
 
57
        va_list ap;
 
58
        char tmp[1024];
 
59
 
 
60
        va_start(ap, fmt);
 
61
 
 
62
        if (context->last_reason) {
 
63
                torture_warning(context, "%s", context->last_reason);
 
64
                free(context->last_reason);
 
65
                context->last_reason = NULL;
 
66
        }
 
67
 
 
68
        context->last_result = result;
 
69
        if (vsprintf(tmp, fmt, ap) == -1) {
 
70
                return;
 
71
        }
 
72
        context->last_reason = malloc(sizeof(tmp));
 
73
        if (!context->last_reason) {
 
74
                return;
 
75
        }
 
76
        memcpy(context->last_reason, tmp, sizeof(tmp));
 
77
 
 
78
        va_end(ap);
 
79
}
 
80
 
 
81
/****************************************************************************
 
82
****************************************************************************/
 
83
 
 
84
void torture_comment(struct torture_context *context, const char *comment, ...)
 
85
{
 
86
        va_list ap;
 
87
        char tmp[1024];
 
88
#if 0
 
89
        if (!context->results->ui_ops->comment)
 
90
                return;
 
91
#endif
 
92
        va_start(ap, comment);
 
93
        if (vsprintf(tmp, comment, ap) == -1) {
 
94
                return;
 
95
        }
 
96
        va_end(ap);
 
97
 
 
98
#if 0
 
99
        context->results->ui_ops->comment(context, tmp);
 
100
#endif
 
101
        fprintf(stdout, "%s\n", tmp);
 
102
 
 
103
#if 0
 
104
        free(tmp);
 
105
#endif
 
106
}