Giter Club home page Giter Club logo

fake-s3's Introduction

Fake S3


Logo

Fake S3

fake-s3 is a lightweight server that responds to the same API as Amazon S3.
Explore the docs »

Report Bug/Issue · Request Feature

Table of Contents
  1. About The Project
  2. Getting Started
  3. Usage
  4. Roadmap
  5. Contributing
  6. License
  7. Contact
  8. Acknowledgments

About The Project

fake-s3 is a lightweight server that responds to the same API as Amazon S3. It is extremely useful for testing S3 in a sandbox environment without actually making calls to Amazon, which is useful for testing code using S3 but without the cost and complications of using the real Amazon S3.

fake-s3 is built using the Go-Fake-S3 library.

Please don't use Fake S3 as a production service. The intended use case for Fake S3 is currently to facilitate testing. It's not meant to be used for safe, persistent access to production data at the moment.

(back to top)

Built With

  • Go

(back to top)

Getting Started

To run the project locally, you will need to make sure you have configured the config.yml correctly with the correct values for your environment. The config.yml file is located in the conf directory.

general:
  port: 8080
  read_timeout: 15
  write_timeout: 15

Running Locally

You can run the Fake S3 as a docker container using the following commands;

  • Build the container image

    docker build -t fake-s3:develop .
  • Populate the config.yaml file with the various values.

  • Run the container

    docker run -e CONFIG_PATH="./conf/" -p 8080:8080 -d --name fake-s3 fake-s3:develop

Or you can run the Fake S3 as a standalone binary using the following commands;

  • Build the binary

    go mod tidy
    go build -o bin/fake-s3 cmd/fake-s3/main.go
  • Populate the config.yml file with the various values.

You can use the config.yml included in the repo as a template.

  • Run the binary

    export CONFIG_PATH="./conf/"
    ./bin/fake-s3

Usage

// Setup a new config
cfg, _ := config.LoadDefaultConfig(
	context.TODO(),
    config.WithCredentialsProvider(credentials.NewStaticCredentialsProvider("KEY", "SECRET", "SESSION")),
    config.WithHTTPClient(&http.Client{
        Transport: &http.Transport{
            TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
        },
    }),
    config.WithEndpointResolverWithOptions(
        aws.EndpointResolverWithOptionsFunc(func(_, _ string, _ ...interface{}) (aws.Endpoint, error) {
            return aws.Endpoint{URL: ts.URL}, nil
        }),
    ),
)

// Create an Amazon S3 v2 client, important to use o.UsePathStyle
// alternatively change local DNS settings, e.g., in /etc/hosts
// to support requests to http://<bucketname>.127.0.0.1:32947/...
client := s3.NewFromConfig(cfg, func(o *s3.Options) {
	o.UsePathStyle = true
})

// Create a bucket
client.CreateBucket(context.TODO(), &s3.CreateBucketInput{
  Bucket: aws.String("fake-s3-bucket"),
})

// Upload an object
tempFile, err := os.CreateTemp(os.TempDir(), "test.txt")
if err != nil {
	fmt.Println(err)
}

result, err := client.PutObject(context.TODO(), &s3.PutObjectInput{
	Bucket: aws.String("fake-s3-bucket"),
	Key:    aws.String(filepath.Base(tempFile.Name())),
	Body:   tempFile,
})
if err != nil {
	fmt.Println(err)
}

Issues

See the open issues for a full list of proposed features (and known issues).

(back to top)

Contributing

Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.

If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!

  1. Clone or Fork the project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request to merge into develop

(back to top)

License

Distributed under the Apache License. See LICENSE.txt for more information.

(back to top)

Contact

Project Link: https://github.com/sculley/fake-s3

(back to top)

(back to top)

Acknowledgments

fake-s3's People

Contributors

sculley avatar

Stargazers

Pato avatar Randy Schmidt avatar fool avatar

Watchers

 avatar

Forkers

usefuulness

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.