-
Notifications
You must be signed in to change notification settings - Fork 5
environment updates for the username userid split #420
Conversation
2787e0b
to
1f8f08c
Compare
4e85610
to
53a4180
Compare
"/srv/app/testrunner/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature:63" is not supposed to run with OC-Storage, and yet it does here https://github.com/owncloud/core/blob/reva-tests/tests/acceptance/features/apiWebdavUpload1/uploadFile.feature#L63 @individual-it test setup issue ? |
the test has these tags: @skipOnOcV10 @skipOnOcis-OC-Storage @issue-ocis-reva-265` |
There are no I guess this PR needs a rebase to latest master here in |
reva updated to get the sharing fixes from #439 |
merging blocked by unexpected failing tests:
not sure if these are legit failures or intended to skip ? @individual-it |
Those are local test scenarios that (were) demonstrating a bug.
It looks like the codes are better. So stuff has been fixed in I hope that there are "unexpected passes" in the Core-API tests - but they seem to have passed as they are. So there is no failing scenario from there that is now passing. So maybe the local scenario here is improved but not going to fully pass every step yet. For that, adjust the test scenario in this PR to expect the better status codes. |
Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de>
Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de>
Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de>
e35e0bb
to
6911261
Compare
…e:88 to match cs3org/reva
6911261
to
b1b712a
Compare
Here is an overview of what got changed by this pull request: Clones added
============
- pkg/flagset/storageoc.go 2
- pkg/command/storagehome.go 1
- pkg/flagset/storagehome.go 3
- pkg/flagset/storageeosdata.go 1
- pkg/command/storageocdata.go 2
- pkg/flagset/storagehomedata.go 4
- pkg/command/storageoc.go 1
- pkg/flagset/storageocdata.go 2
- pkg/command/storagehomedata.go 2
Clones removed
==============
+ pkg/flagset/storageroot.go -2
+ pkg/flagset/storageeos.go -1
See the complete overview on Codacy |
I have adjusted the test scenario to the improved status codes, so that it now reads the same as in |
|
||
&cli.StringFlag{ | ||
Name: "users-url", | ||
Value: "localhost:9144", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I remember people complaining here, that a URL should always have http(s)://
. Please adjust. ;-)
|
||
&cli.StringFlag{ | ||
Name: "users-url", | ||
Value: "localhost:9144", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add http(s)://
(see first comment)
|
||
&cli.StringFlag{ | ||
Name: "users-url", | ||
Value: "localhost:9144", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add http(s)://
(see first comment)
|
||
&cli.StringFlag{ | ||
Name: "users-url", | ||
Value: "localhost:9144", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add http(s)://
(see first comment)
I started adjusting locally and saw that other unrelated URLs are also not prefixed. I'd rather not risk more side effects now and leave it be, unless @butonic thinks it is safe to adjust them all... |
I've raised https://github.com/owncloud/ocis-reva/issues/440 for addressing the https thing |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
We updated the owncloud storage driver in reva to properly look up users by userid or username using the userprovider instead of taking the path segment as is. This requires the user service address as well as changing the default layout to the userid instead of the username. The latter is not considered a stable and persistent identifier.
requires a replace of reva for the PR cs3org/reva#1033