mock-aws-s3 icon indicating copy to clipboard operation
mock-aws-s3 copied to clipboard

Library to mock the AWS SDK for Node.js

Results 21 mock-aws-s3 issues
Sort by recently updated
recently updated
newest added

Bumps [grunt](https://github.com/gruntjs/grunt) from 1.0.4 to 1.5.3. Release notes Sourced from grunt's releases. v1.5.3 Merge pull request #1745 from gruntjs/fix-copy-op 572d79b Patch up race condition in symlink copying. 58016ff Merge pull...

dependencies

Update `upload()` called with a Stream response to be the same object as if `upload()` was called with a Buffer

Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. Commits 7efb22a 1.2.6 ef88b93 security notice for additional prototype pollution issue c2b9819 isConstructorOrProto adapted from PR bc8ecee test from prototype pollution PR See full...

dependencies

Bumps [ajv](https://github.com/ajv-validator/ajv) from 6.11.0 to 6.12.6. Release notes Sourced from ajv's releases. v6.12.6 Fix performance issue of "url" format. v6.12.5 Fix uri scheme validation (@​ChALkeR). Fix boolean schemas with strictKeywords...

dependencies

`getObject` works as expected, but `putObject` looks like it's still stubbed out without a fake implementation (one that would call the callback or work as a promisified) https://github.com/MathieuLoutre/mock-aws-s3/blob/6b5aa02d2f4c902db14a1cfd2e03ce0a10204594/lib/mock.js#L621 I think...

I've just upgraded both aws-sdk and mock-aws-s3 to their latest version, but I am getting the following type error (using TypeScript): ``` Type 'S3' is missing the following properties from...

seems no more promisfy in [@aws-sdk/client-s3 ](https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-s3)

Instead of throwing an AWSError with `NoSuchKey` code, `headObject` just allows an `ENONENT` to be emitted

I get the error if I want to getList of empty bucket: ``` s3 = AWSMock.S3({Bucket: 'my-bucket'}); s3.listObjects({Bucket: 'my-bucket', Prefix: 'new-one/'}, (data)=>{ console.log(data); }); Error: ENOENT: no such file or...