Introducing goseeder – the go database seeder

Hi everyone. It has been a long time since my last post. I have so many ideas and topics that I want to share but could not due to time limits.

Anyway, I am back! and this time  introducing one go library that I created, goseeder https://github.com/kristijorgji/goseeder

Contents

Motivation

Golang is a great language and getting better as community and frameworks, but there are still a lot of pieces missing for developing fast, accurate way and avoiding repetitions.

I was searching for a go database seeder similar to the one that Laravel/Lumen provides and could not find one.

Knowing that this is such an important key element of any big project for testing and seeding projects with dummy data I decided to create one myself and share.

Features

For now the library supports only MySql as a database driver for its utility functions like (s Seeder) FromJson but it is db agnostic for your custom seeders you can use any database that is supported by sql.DB

goseeder in your go database seed files.

  1. Allows specifying seeds for different environments such as test,common (all envs) and more (flexible you can define them)
  2. Provides out of the box functions like (s Seeder) FromJson to seed the table from json data and more data formats and drivers coming soon
  3. Execute database seeder by specifying their names go run main.go --gseed --gsnames=categoriesSeeder,productsSeeder
  4. Execute database seeders by specifying the environment go run main.go --gseed --gsenv=test

Installation

Usage

Please check examples/simpleshop for a full working separate go project that uses the seeder

Below I will explain once more all the steps needed to have goseeder up and running for your project.

1. Change Your Main Function

In order to give your executable seeding abilities and support for its command line arguments, the first thing we have to do is to wrap our main function with the provided goseeder.WithSeeder

The function requires as argument

  1. one function that returns a db connection necessary to seed
  2. your original main function, which will get executed if no seed is requested

One such main file can look like below:

2. Registering Your Seeds

Great! After step 1 our executable is able to run in seed mode or default mode.

Now we want to know how to register our custom seeds.

If you look at the imports in main file from step one, we might notice that we import _ "simpleshop/db/seeds" even though we do not use them directly.

This is mandatory because our seeds will get registered during package initialisation as we will see later.

The recommended project folder structure to work properly with goseeder is to have the following path for the seeders db/seeds and the package name to be seeds

Inside the folder you can add your seeders, for example lets seed some data into the categories table from one json file located at db/seeds/data/categories.json.

To do that we create our categories.go file at db/seeds folder:

To use this seed, the last step is to register it.

Seeds can be registered as:

  1. common seeds that run for all environments
  2. for a specific environment like testyourcustomenv (more in step 3)

We are going to create below a seed that runs for all environments, so we will not specify any env while registering it.

To do that we create in the db/seeds folder the file common.go that will register seeds that get always executed regardless of the environment:

We used goseeder.Register to register our seed function to run for all environments.

That is all for the basic usage of goseeder!!!

Our function in categories.go file is now registered and ready to be used.

Now you can run

and it will run all your seeds against the provided db connection.

The framework will look for categories.json file in the path db/seeds/data, and insert all the entries there in a table named categories (inferred from the file name)

3. Run Seeds Only For Specific Env

Many times we want to have seeds only for test environment, test purpose and want to avoid having thousand of randomly generated rows inserted into production database by mistake!

Or we just want granular control, to have separate data to populate our app/web in different way for staging prod yourcustomenv and so on.

goseeder is designed to take care of this by using one of the following methods:

  • goseeder.RegisterForTest(seeder func(s Seeder) – registers the specified seed for the env named test
  • goseeder.RegisterForEnv(env string, seeder func(s Seeder)) – will register your seeder to be executed only for the custom specified env

Let’s add to our previous categories.go seeder one seed function specific only for test env! The file now will look like:

Finally, lets create our registrator file for all test seeds same way as we did with common.go, we will create test.go now with content as below:

That is all!

Now if you run your app without specifying test env, only the common env seeders will run and you cannot mess by mistake production or other environments!

To run the test seeder above you have to run:

4. Run Seeds By Name

When we register a seed like shown in step 2, the seed name is the same as the function name, so our seed is called categoriesSeeder because that is the name of the function we register below

This is important because we are totally flexible and can do cool things like execute only the specific seed functions that we want!

Let’s assume that we have 100 seed functions, and want to execute only one of them which is named categoriesSeeder (that we registered above) and ignore all the other seeds.

Easy as this, just run:

If you want to execute multiple seeds by specifying their names, just use comma separated value like --gsnames=categoriesSeeder,someOtherSeeder

Summary Of Cli Args

You can always run

to see all the available arguments and their descriptions.

For the current version the result is: