* [PATCH] fstests: modify user name beginning with non-digit
@ 2020-06-03 10:20 Yong Sun
2020-06-04 8:30 ` Petr Vorel
0 siblings, 1 reply; 5+ messages in thread
From: Yong Sun @ 2020-06-03 10:20 UTC (permalink / raw)
To: fstests; +Cc: Yong Sun
openSUSE and SLE don't support username begin with digit, so it will
skip test generic/597 and generic/598 by lack of 123456-fsgqa user.
generic/597 and 598 are not test username begin with digit on purpose
(different with generic/381). It's will be helpful to use an username
begin with non-digit in this case.
Signed-off-by: Sun Yong <yosun@suse.com>
---
README | 1 +
tests/generic/597 | 4 ++--
tests/generic/598 | 4 ++--
3 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/README b/README
index 094a7742..cffa0bc6 100644
--- a/README
+++ b/README
@@ -22,6 +22,7 @@ _______________________
- create fsgqa test user ("sudo useradd -m fsgqa")
- create fsgqa group ("sudo groupadd fsgqa")
- create 123456-fsgqa test user ("sudo useradd 123456-fsgqa")
+- create fsgqa-123456 test user ("sudo useradd fsgqa-123456")
______________________
USING THE FSQA SUITE
diff --git a/tests/generic/597 b/tests/generic/597
index 1d87a23a..c4d524b7 100755
--- a/tests/generic/597
+++ b/tests/generic/597
@@ -43,11 +43,11 @@ _require_sysctl_variable fs.protected_symlinks
_require_sysctl_variable fs.protected_hardlinks
# su in _require_user prints warnings about user name starts with a digit,
# discard the warning
-_require_user 123456-fsgqa >/dev/null 2>&1
+_require_user fsgqa-123456 >/dev/null 2>&1
# Do this SECOND so that qa_user is fsgqa, and _user_do uses that account
_require_user fsgqa
-OWNER=123456-fsgqa
+OWNER=fsgqa-123456
OTHER=fsgqa
# Save current system state to reset when done
diff --git a/tests/generic/598 b/tests/generic/598
index 998b62cf..1cf9a3d1 100755
--- a/tests/generic/598
+++ b/tests/generic/598
@@ -43,11 +43,11 @@ _require_sysctl_variable fs.protected_regular
_require_sysctl_variable fs.protected_fifos
# su in _require_user prints warnings about user name starts with a digit,
# discard the warning
-_require_user 123456-fsgqa >/dev/null 2>&1
+_require_user fsgqa-123456 >/dev/null 2>&1
# Do this SECOND so that qa_user is fsgqa, and _user_do uses that account
_require_user fsgqa
-USER1=123456-fsgqa
+USER1=fsgqa-123456
USER2=fsgqa
# Save current system state to reset when done
--
2.26.2
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] fstests: modify user name beginning with non-digit
2020-06-03 10:20 [PATCH] fstests: modify user name beginning with non-digit Yong Sun
@ 2020-06-04 8:30 ` Petr Vorel
2020-06-04 9:36 ` Zorro Lang
2020-06-04 9:47 ` Sun Yong
0 siblings, 2 replies; 5+ messages in thread
From: Petr Vorel @ 2020-06-04 8:30 UTC (permalink / raw)
To: Yong Sun, Eric Sandeen; +Cc: fstests, Yong Sun, Eryu Guan, Zorro Lang
Hi Sero,
> openSUSE and SLE don't support username begin with digit, so it will
> skip test generic/597 and generic/598 by lack of 123456-fsgqa user.
> generic/597 and 598 are not test username begin with digit on purpose
> (different with generic/381). It's will be helpful to use an username
> begin with non-digit in this case.
> Signed-off-by: Sun Yong <yosun@suse.com>
> ---
> README | 1 +
> tests/generic/597 | 4 ++--
> tests/generic/598 | 4 ++--
> 3 files changed, 5 insertions(+), 4 deletions(-)
> diff --git a/README b/README
> index 094a7742..cffa0bc6 100644
> --- a/README
> +++ b/README
> @@ -22,6 +22,7 @@ _______________________
> - create fsgqa test user ("sudo useradd -m fsgqa")
> - create fsgqa group ("sudo groupadd fsgqa")
> - create 123456-fsgqa test user ("sudo useradd 123456-fsgqa")
I thought fsgqa-123456 is replacement for 123456-fsgqa. Thus I'd delete this
line.
> +- create fsgqa-123456 test user ("sudo useradd fsgqa-123456")
Also test tests/generic/381 still uses 123456-fsgqa. Shouldn't be replaced as
well?
> ______________________
> USING THE FSQA SUITE
> diff --git a/tests/generic/597 b/tests/generic/597
> index 1d87a23a..c4d524b7 100755
> --- a/tests/generic/597
> +++ b/tests/generic/597
> @@ -43,11 +43,11 @@ _require_sysctl_variable fs.protected_symlinks
> _require_sysctl_variable fs.protected_hardlinks
> # su in _require_user prints warnings about user name starts with a digit,
> # discard the warning
> -_require_user 123456-fsgqa >/dev/null 2>&1
> +_require_user fsgqa-123456 >/dev/null 2>&1
I that redirection to /dev/null was due errors caused by starting with
digits. As other _require_user calls don't have it, I'd remove the
redirection. + remove that comment "su in _require_user prints warnings about
user name starts with a digit," ... which is now useless/invalid.
Eric, was there a reson to use user name which starts with digit?
> # Do this SECOND so that qa_user is fsgqa, and _user_do uses that account
> _require_user fsgqa
> -OWNER=123456-fsgqa
> +OWNER=fsgqa-123456
> OTHER=fsgqa
> # Save current system state to reset when done
> diff --git a/tests/generic/598 b/tests/generic/598
> index 998b62cf..1cf9a3d1 100755
> --- a/tests/generic/598
> +++ b/tests/generic/598
> @@ -43,11 +43,11 @@ _require_sysctl_variable fs.protected_regular
> _require_sysctl_variable fs.protected_fifos
> # su in _require_user prints warnings about user name starts with a digit,
> # discard the warning
> -_require_user 123456-fsgqa >/dev/null 2>&1
> +_require_user fsgqa-123456 >/dev/null 2>&1
> # Do this SECOND so that qa_user is fsgqa, and _user_do uses that account
> _require_user fsgqa
> -USER1=123456-fsgqa
> +USER1=fsgqa-123456
> USER2=fsgqa
> # Save current system state to reset when done
Kind regards,
Petr
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] fstests: modify user name beginning with non-digit
2020-06-04 8:30 ` Petr Vorel
@ 2020-06-04 9:36 ` Zorro Lang
2020-06-04 10:49 ` Petr Vorel
2020-06-04 9:47 ` Sun Yong
1 sibling, 1 reply; 5+ messages in thread
From: Zorro Lang @ 2020-06-04 9:36 UTC (permalink / raw)
To: Petr Vorel; +Cc: Yong Sun, Eric Sandeen, fstests, Yong Sun, Eryu Guan
On Thu, Jun 04, 2020 at 10:30:23AM +0200, Petr Vorel wrote:
> Hi Sero,
>
> > openSUSE and SLE don't support username begin with digit, so it will
> > skip test generic/597 and generic/598 by lack of 123456-fsgqa user.
> > generic/597 and 598 are not test username begin with digit on purpose
> > (different with generic/381). It's will be helpful to use an username
> > begin with non-digit in this case.
>
> > Signed-off-by: Sun Yong <yosun@suse.com>
> > ---
> > README | 1 +
> > tests/generic/597 | 4 ++--
> > tests/generic/598 | 4 ++--
> > 3 files changed, 5 insertions(+), 4 deletions(-)
>
> > diff --git a/README b/README
> > index 094a7742..cffa0bc6 100644
> > --- a/README
> > +++ b/README
> > @@ -22,6 +22,7 @@ _______________________
> > - create fsgqa test user ("sudo useradd -m fsgqa")
> > - create fsgqa group ("sudo groupadd fsgqa")
> > - create 123456-fsgqa test user ("sudo useradd 123456-fsgqa")
> I thought fsgqa-123456 is replacement for 123456-fsgqa. Thus I'd delete this
> line.
> > +- create fsgqa-123456 test user ("sudo useradd fsgqa-123456")
>
> Also test tests/generic/381 still uses 123456-fsgqa. Shouldn't be replaced as
> well?
I don't know why this case need user '123456-fsgqa', but the generic/381 need
the 123456-fsgqa necessarily. It cover a bug about how xfs_quota deal with
user name begin with digits.
Thanks,
Zorro
>
> > ______________________
> > USING THE FSQA SUITE
> > diff --git a/tests/generic/597 b/tests/generic/597
> > index 1d87a23a..c4d524b7 100755
> > --- a/tests/generic/597
> > +++ b/tests/generic/597
> > @@ -43,11 +43,11 @@ _require_sysctl_variable fs.protected_symlinks
> > _require_sysctl_variable fs.protected_hardlinks
> > # su in _require_user prints warnings about user name starts with a digit,
> > # discard the warning
> > -_require_user 123456-fsgqa >/dev/null 2>&1
> > +_require_user fsgqa-123456 >/dev/null 2>&1
> I that redirection to /dev/null was due errors caused by starting with
> digits. As other _require_user calls don't have it, I'd remove the
> redirection. + remove that comment "su in _require_user prints warnings about
> user name starts with a digit," ... which is now useless/invalid.
>
> Eric, was there a reson to use user name which starts with digit?
>
> > # Do this SECOND so that qa_user is fsgqa, and _user_do uses that account
> > _require_user fsgqa
>
> > -OWNER=123456-fsgqa
> > +OWNER=fsgqa-123456
> > OTHER=fsgqa
>
> > # Save current system state to reset when done
> > diff --git a/tests/generic/598 b/tests/generic/598
> > index 998b62cf..1cf9a3d1 100755
> > --- a/tests/generic/598
> > +++ b/tests/generic/598
> > @@ -43,11 +43,11 @@ _require_sysctl_variable fs.protected_regular
> > _require_sysctl_variable fs.protected_fifos
> > # su in _require_user prints warnings about user name starts with a digit,
> > # discard the warning
> > -_require_user 123456-fsgqa >/dev/null 2>&1
> > +_require_user fsgqa-123456 >/dev/null 2>&1
> > # Do this SECOND so that qa_user is fsgqa, and _user_do uses that account
> > _require_user fsgqa
>
> > -USER1=123456-fsgqa
> > +USER1=fsgqa-123456
> > USER2=fsgqa
>
> > # Save current system state to reset when done
>
> Kind regards,
> Petr
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] fstests: modify user name beginning with non-digit
2020-06-04 8:30 ` Petr Vorel
2020-06-04 9:36 ` Zorro Lang
@ 2020-06-04 9:47 ` Sun Yong
1 sibling, 0 replies; 5+ messages in thread
From: Sun Yong @ 2020-06-04 9:47 UTC (permalink / raw)
To: Petr Vorel; +Cc: Eric Sandeen, fstests, Yong Sun, Eryu Guan, Zorro Lang
Petr Vorel <pvorel@suse.cz> 于2020年6月4日周四 下午4:30写道:
>
> Hi Sero,
>
> > openSUSE and SLE don't support username begin with digit, so it will
> > skip test generic/597 and generic/598 by lack of 123456-fsgqa user.
> > generic/597 and 598 are not test username begin with digit on purpose
> > (different with generic/381). It's will be helpful to use an username
> > begin with non-digit in this case.
>
> > Signed-off-by: Sun Yong <yosun@suse.com>
> > ---
> > README | 1 +
> > tests/generic/597 | 4 ++--
> > tests/generic/598 | 4 ++--
> > 3 files changed, 5 insertions(+), 4 deletions(-)
>
> > diff --git a/README b/README
> > index 094a7742..cffa0bc6 100644
> > --- a/README
> > +++ b/README
> > @@ -22,6 +22,7 @@ _______________________
> > - create fsgqa test user ("sudo useradd -m fsgqa")
> > - create fsgqa group ("sudo groupadd fsgqa")
> > - create 123456-fsgqa test user ("sudo useradd 123456-fsgqa")
> I thought fsgqa-123456 is replacement for 123456-fsgqa. Thus I'd delete this
> line.
> > +- create fsgqa-123456 test user ("sudo useradd fsgqa-123456")
>
> Also test tests/generic/381 still uses 123456-fsgqa. Shouldn't be replaced as
> well?
As Zorro said, generic/381 is purpose to test digital started username, modify
it will make that test meaningless. So better leave it skip when system don't
support digital started username.
>
> > ______________________
> > USING THE FSQA SUITE
> > diff --git a/tests/generic/597 b/tests/generic/597
> > index 1d87a23a..c4d524b7 100755
> > --- a/tests/generic/597
> > +++ b/tests/generic/597
> > @@ -43,11 +43,11 @@ _require_sysctl_variable fs.protected_symlinks
> > _require_sysctl_variable fs.protected_hardlinks
> > # su in _require_user prints warnings about user name starts with a digit,
> > # discard the warning
> > -_require_user 123456-fsgqa >/dev/null 2>&1
> > +_require_user fsgqa-123456 >/dev/null 2>&1
> I that redirection to /dev/null was due errors caused by starting with
> digits. As other _require_user calls don't have it, I'd remove the
> redirection. + remove that comment "su in _require_user prints warnings about
> user name starts with a digit," ... which is now useless/invalid.
Nice catch, then no need to redirection and comments also invalid.
I'll modify it in v2.
>
> Eric, was there a reson to use user name which starts with digit?
>
> > # Do this SECOND so that qa_user is fsgqa, and _user_do uses that account
> > _require_user fsgqa
>
> > -OWNER=123456-fsgqa
> > +OWNER=fsgqa-123456
> > OTHER=fsgqa
>
> > # Save current system state to reset when done
> > diff --git a/tests/generic/598 b/tests/generic/598
> > index 998b62cf..1cf9a3d1 100755
> > --- a/tests/generic/598
> > +++ b/tests/generic/598
> > @@ -43,11 +43,11 @@ _require_sysctl_variable fs.protected_regular
> > _require_sysctl_variable fs.protected_fifos
> > # su in _require_user prints warnings about user name starts with a digit,
> > # discard the warning
> > -_require_user 123456-fsgqa >/dev/null 2>&1
> > +_require_user fsgqa-123456 >/dev/null 2>&1
> > # Do this SECOND so that qa_user is fsgqa, and _user_do uses that account
> > _require_user fsgqa
>
> > -USER1=123456-fsgqa
> > +USER1=fsgqa-123456
> > USER2=fsgqa
>
> > # Save current system state to reset when done
>
> Kind regards,
> Petr
Thanks,
Sero
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] fstests: modify user name beginning with non-digit
2020-06-04 9:36 ` Zorro Lang
@ 2020-06-04 10:49 ` Petr Vorel
0 siblings, 0 replies; 5+ messages in thread
From: Petr Vorel @ 2020-06-04 10:49 UTC (permalink / raw)
To: Yong Sun, Eric Sandeen, fstests, Yong Sun, Eryu Guan
Hi Zorro,
> > Also test tests/generic/381 still uses 123456-fsgqa. Shouldn't be replaced as
> > well?
> I don't know why this case need user '123456-fsgqa', but the generic/381 need
> the 123456-fsgqa necessarily. It cover a bug about how xfs_quota deal with
> user name begin with digits.
Thanks for a quick clarification, sorry for overlooking the test description.
Kind regards,
Petr
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2020-06-04 10:49 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-06-03 10:20 [PATCH] fstests: modify user name beginning with non-digit Yong Sun
2020-06-04 8:30 ` Petr Vorel
2020-06-04 9:36 ` Zorro Lang
2020-06-04 10:49 ` Petr Vorel
2020-06-04 9:47 ` Sun Yong
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.