Uh oh!
There was an error while loading. Please reload this page.
Added support for Alibaba Cloud storage adapter - #95
Conversation
Signed-off-by: nidhi-singh02 <nidhi2894@gmail.com>
f93fb2c to
a3a956cComparevermakhushboo
commented
Oct 22, 2023
Hey @nidhi-singh02, thank you for your contribution! ✨ |
| protected function setUp(): void | ||
| { | ||
| $this->alibaba = new Alibaba('accessKey', 'secretKey', 'bucket', 'endpoint'); |
There was a problem hiding this comment.
You need to pass actual values of accessKey, secretKey etc. Those values can either be added to environment variables and read from there or you can take a reference from the S3 adapter.
| public function testRead() | ||
| { | ||
| $this->expectException(OssException::class); |
There was a problem hiding this comment.
The tests need to ensure that the method works as expected. You can use a test Alibaba Cloud account, read values from there and assert that the value is being read properly. Similarly for other tests.
| public function testExists() | ||
| { | ||
| $this->expectException(OssException::class); |
There was a problem hiding this comment.
Add tests for all cases like when the value exists and when it doesn't exist.
vermakhushboo
commented
Oct 31, 2023
@nidhi-singh02 have you made any progress? If yes, please update the same. |
gewenyu99
commented
Oct 31, 2023
Hey, Due to time constraints, I'm going to mark this PR When it is merged, we'll contact you for Appwrite-specific Hacktoberfest swag. Thanks for helping us improve Appwrite! |
gewenyu99
commented
Apr 8, 2024
Hey there! There were a lot of big PRs during this Hacktoberfest, and we wanted to give everyone ample time to collaborate with our engineering team. If you were able to merge your PRs during October, amazing. If it’s still not merged, don’t worry about it either. Either way, we’ve got your Hacktoberfest swag minted and ready to ship. Please comment with your Discord username here so we can contact you about your shipping information to deliver your Hacktoberfest swag. |
nidhi-singh02
commented
Apr 9, 2024
That's great to hear. My discord user name is "nidzi." |
gewenyu99
commented
Apr 19, 2024
Will reach out ASAP, adding everyone's names to a spread sheet to reach out together. Thank you for your patience :) |
Added support for Alibaba Cloud storage adapter