plamenGo

Results 14 comments of plamenGo

@imulab if you want me to help, I can take a stab at fixing some of these test failures. Just let me know which ones you consider important, and/or which...

It looks like, at least partially, the issue is that the Azure AD Postman test suite expects the enterprise extension schema to be supported. This user failing to get created...

Yes, we should definitely work to pass the Microsoft SCIM reference code tests with this project. This would ensure compliance and support for Azure AD. I opened a PR for...

`{"level":"error","error":"invalidPath: no attribute named 'displayName' from 'members'","time":"2020-04-30T19:15:53Z","message":"error when patching resource"}` This specific test failure seems to be a problem with the test. Opened an issue for it on the Microsoft...

OK, I can check it out -- I did the same a forked repo, so I will check for any differences. Thanks @imulab!

Looks good, works fine. Originally, I used this schema (with a .json ext): [user_enterprise_extension_schema.txt](https://github.com/imulab/go-scim/files/4583531/user_enterprise_extension_schema.txt) It has different indices specified, and the manager schema is not called out. No idea whether...

looks like the enterprise schema does not work with PATCH calls, keep getting "error invalid path"

PATCH /Users/f020ebd9-8a5f-49de-b4d1-b47f755b7747 either one of these bodies fails ``` {"schemas":["urn:ietf:params:scim:api:messages:2.0:PatchOp"],"Operations":[{"op":"Add","path":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User:manager","value":"45619541-95de-4d5e-9872-571b5d2c5577"}]}" ``` ``` {"schemas":["urn:ietf:params:scim:api:messages:2.0:PatchOp"],"Operations":[{"op":"Add","path":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User:employeeNumber","value":"6546579"}]} ``` this issue is same as https://github.com/imulab/go-scim/issues/75

Hi, thank you for looking into this! I tested, and this is what I'm finding: It works fine for the **add** op. Specifically, it works for this request: `{"schemas":["urn:ietf:params:scim:api:messages:2.0:PatchOp"],"Operations":[{"op":"Add","path":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User:employeeNumber","value":"6546579"}]}` It...

Hi, wondering if there is any advice on this.