-
-
Notifications
You must be signed in to change notification settings - Fork 163
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from gruntwork-io/v0.0.1
bash-commons v0.0.1
- Loading branch information
Showing
21 changed files
with
1,758 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
FROM ubuntu:16.04 | ||
MAINTAINER Gruntwork <info@gruntwork.io> | ||
|
||
# Install Bats | ||
RUN DEBIAN_FRONTEND=noninteractive apt-get update && \ | ||
apt-get install -y software-properties-common && \ | ||
add-apt-repository ppa:duggan/bats && \ | ||
DEBIAN_FRONTEND=noninteractive apt-get update && \ | ||
apt-get install -y bats | ||
|
||
# Install other basic dependencies | ||
RUN apt-get install -y python-pip jq sudo && \ | ||
pip install awscli --upgrade --user |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
version: 2 | ||
jobs: | ||
build: | ||
docker: | ||
- image: gruntwork/bash-commons-circleci-tests | ||
steps: | ||
- checkout | ||
- run: bats test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,221 @@ | ||
# Bash Commons | ||
|
||
[WIP] | ||
This repo contains a collection of reusable Bash functions for handling common tasks such as logging, assertions, | ||
string manipulation, and more. It is our attempt to bring a little more sanity, predictability, and coding reuse to our | ||
Bash scripts. All the code has thorough automated tests and is packaged into functions, so you can safely import it | ||
into your bash scripts using `source`. | ||
|
||
|
||
|
||
|
||
## Examples | ||
|
||
Once you have `bash-commons` installed (see the [install instructions](#install)), you use `source` to import the | ||
modules and start calling the functions within them: | ||
|
||
```bash | ||
source /opt/gruntwork/bash-commons/log.sh | ||
source /opt/gruntwork/bash-commons/assert.sh | ||
source /opt/gruntwork/bash-commons/os.sh | ||
|
||
log_info "Hello, World!" | ||
|
||
assert_not_empty "--foo" "$foo" "You must provide a value for the --foo parameter." | ||
|
||
if os_is_ubuntu "16.04"; then | ||
log_info "This script is running on Ubuntu 16.04!" | ||
elif os_is_centos; then | ||
log_info "This script is running on CentOS!" | ||
fi | ||
``` | ||
|
||
|
||
|
||
|
||
## Install | ||
|
||
The first step is to download the code onto your computer. | ||
|
||
The easiest way to do this is with the [Gruntwork Installer](https://github.com/gruntwork-io/gruntwork-installer) | ||
(note, you'll need to replace `<VERSION>` below with a version number from the [releases | ||
page](https://github.com/gruntwork-io/bash-commons/releases)): | ||
|
||
```bash | ||
gruntwork-install \ | ||
--repo https://github.com/gruntwork-io/bash-commons \ | ||
--module-name bash-commons \ | ||
--tag <VERSION> | ||
``` | ||
|
||
The default install location is `/opt/gruntwork/bash-commons`, but you can override that using the `dir` param, and | ||
override the owner of the install dir using the `owner` and `group` params: | ||
|
||
```bash | ||
gruntwork-install \ | ||
--repo https://github.com/gruntwork-io/bash-commons \ | ||
--module-name bash-commons \ | ||
--tag <VERSION> \ | ||
--module-param dir=/foo/bar \ | ||
--module-param owner=my-os-username \ | ||
--module-param group=my-os-group | ||
``` | ||
|
||
If you don't want to use the Gruntwork Installer, you can use `git clone` to get the code onto your computer and then | ||
copy it to it's final destination manually: | ||
|
||
```bash | ||
git clone --branch <VERSION> https://github.com/gruntwork-io/bash-commons.git | ||
|
||
sudo mkdir -p /opt/gruntwork | ||
cp -r bash-commons/modules/bash-commons/src /opt/gruntwork/bash-commons | ||
sudo chown -R "my-os-username:my-os-group" /opt/gruntwork/bash-commons | ||
``` | ||
|
||
|
||
|
||
## Importing modules | ||
|
||
You can use the `source` command to "import" the modules you need and use them in your code: | ||
|
||
```bash | ||
source /opt/gruntwork/bash-commons/log.sh | ||
``` | ||
|
||
This will make all the functions within that module available in your code: | ||
|
||
```bash | ||
log_info "Hello, World!" | ||
``` | ||
|
||
|
||
|
||
|
||
## Available modules | ||
|
||
Here's an overview of the modules available in `bash-commons`: | ||
|
||
* `array.sh`: Helpers for working with Bash arrays, such as checking if an array contains an element, or joining an | ||
array into a string with a delimiter between elements. | ||
|
||
* `assert.sh`: Assertions that check a condition and exit if the condition is not met, such as asserting a variable is | ||
not empty or that an expected app is installed. Useful for defensive programming. | ||
|
||
* `aws.sh`: A collection of thin wrappers for direct calls to the [AWS CLI](https://aws.amazon.com/cli/) and [EC2 | ||
Instance Metadata](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-metadata.html). These thin | ||
wrappers give you a shorthand way to fetch certain information (e.g., information about an EC2 Instance, such as its | ||
private IP, public IP, Instance ID, and region). Moreover, you can swap out `aws.sh` with a version that returns mock | ||
data to make it easy to run your code locally (e.g., in Docker) and to run unit tests. | ||
|
||
* `aws-wrapper.sh`: A collection of "high level" wrappers for the [AWS CLI](https://aws.amazon.com/cli/) and [EC2 | ||
Instance Metadata](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-metadata.html) to simplify common | ||
tasks such as looking up tags or IPs for EC2 Instances. Note that these wrappers handle all the data processing and | ||
logic, whereas all the direct calls to the AWS CLI and EC2 metadata endpoints are delegated to `aws.sh` to make unit | ||
testing easier. | ||
|
||
* `file.sh`: A collection of helpers for working with files, such as checking if a file exists or contains certain text. | ||
|
||
* `log.sh`: A collection of logging helpers that write logs to `stderr` with log levels (INFO, WARN, ERROR) and | ||
timestamps. | ||
|
||
* `os.sh`: A collection of Operating System helpers, such as checking which flavor of Linux (e.g., Ubuntu, CentOS) is | ||
running and validating checksums. | ||
|
||
* `string.sh`: A collection of string manipulation functions, such as checking if a string contains specific text, | ||
stripping prefixes, and stripping suffixes. | ||
|
||
|
||
|
||
|
||
## Coding principles | ||
|
||
The code in `bash-commons` follows the following principles: | ||
|
||
1. [Compatibility](#compatibility) | ||
1. [Code style](#code-style) | ||
1. [Everything is a function](#everything-is-a-function) | ||
1. [Namespacing](#namespacing) | ||
1. [Testing](#testing) | ||
|
||
|
||
### Compatibility | ||
|
||
The code in this repo aims to be compatible with: | ||
|
||
* Bash 3 | ||
* Most major Linux distributions (e.g., Ubuntu, CentOS) | ||
|
||
|
||
### Code style | ||
|
||
All the code should mainly follow the [Google Shell Style Guide](https://google.github.io/styleguide/shell.xml). | ||
In particular: | ||
|
||
* The first line of every script should be `#!/bin/bash`. | ||
* All code should be defined in functions. | ||
* Functions should exit or return 0 on success and non-zero on error. | ||
* Functions should return output by writing it to `stdout`. | ||
* Functions should log to `stderr`. | ||
* All variables should be `local`. No global variables are allowed at all. | ||
* Make as many variables `readonly` as possible. | ||
* If calling to a subshell and storing the output in a variable (foo=`$( ... )`), do NOT use `local` and `readonly` | ||
in the same statement or the [exit code will be | ||
lost](https://blog.gruntwork.io/yak-shaving-series-1-all-i-need-is-a-little-bit-of-disk-space-6e5ef1644f67). Instead, | ||
declare the variable as `local` on one line and then call the subshell on the next line. | ||
* Quote all strings. | ||
* Use `[[ ... ]]` instead of `[ ... ]`. | ||
* Use snake_case for function and variable names. Use UPPER_SNAKE_CASE for constants. | ||
|
||
|
||
### Everything in a function | ||
|
||
It's essential that ALL code is defined in a function. That allows you to use `source` to "import" that code without | ||
anything actually being executed. | ||
|
||
|
||
### Namespacing | ||
|
||
Bash does not support namespacing, so we fake it using a convention on the function names: if you create a file | ||
`<foo.sh>`, all functions in it should start with `foo_`. For example, all the functions in `log.sh` start with `log_` | ||
(`log_info`, `log_error`) and all the functions in `string.sh` start with `string_` (`string_contains`, | ||
`string_strip_prefix`). That makes it easier to tell which functions came from which modules. | ||
|
||
For readability, that means you should typically give files a name that is a singular noun. For example, `log.sh` | ||
instead of `logging.sh` and `string.sh` instead of `strings.sh`. | ||
|
||
|
||
### Testing | ||
|
||
Every function should be tested: | ||
|
||
* Automated tests are in the [test](/test) folder. | ||
|
||
* We use [Bats](https://github.com/sstephenson/bats) as our unit test framework for Bash code. Note: Bats has not been | ||
maintained the last couple years, so we may need to change to the [bats-core](https://github.com/bats-core/bats-core) | ||
fork at some point (see [#150](https://github.com/sstephenson/bats/issues/150)). | ||
|
||
* We run all tests in the [gruntwork/bash-commons-circleci-tests Docker | ||
image](https://hub.docker.com/r/gruntwork/bash-commons-circleci-tests/) so that (a) it's consistent with how the CI | ||
server runs them, (b) the tests always run on Linux, (c) any changes the tests make, such as writing files or | ||
creating OS users, won't affect the host OS, (d) we can replace some of the modules, such as `aws.sh`, with mocks at | ||
test time. There is a `docker-compose.yml` file in the `test` folder to make it easy to run the tests. | ||
|
||
* To run all the tests: `docker-compose up`. | ||
|
||
* To run one test file: `docker-compose run tests bats test/array.bats`. | ||
|
||
* To leave the Docker container running so you can debug, explore, and interactively run bats: `docker-compose run tests bash`. | ||
|
||
* If you ever need to build a new Docker image, the `Dockerfile` is in the [.circleci folder](/.circleci): | ||
|
||
```bash | ||
cd .circleci | ||
docker build -t gruntwork/bash-commons-circleci-tests . | ||
docker push gruntwork/bash-commons-circleci-tests | ||
``` | ||
|
||
|
||
|
||
## TODO | ||
|
||
1. Add automated tests for `aws.sh` and `aws-wrapper.sh`. We have not tested these as they require either running an | ||
EC2 Instance or run something like [LocalStack](https://github.com/localstack/localstack). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
#!/bin/bash | ||
# This script is used by the Gruntwork Installer to install the bash-commons library. | ||
|
||
set -e | ||
|
||
readonly SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" | ||
readonly BASH_COMMONS_SRC_DIR="$SCRIPT_DIR/src" | ||
|
||
source "$BASH_COMMONS_SRC_DIR/log.sh" | ||
source "$BASH_COMMONS_SRC_DIR/assert.sh" | ||
source "$BASH_COMMONS_SRC_DIR/os.sh" | ||
|
||
readonly DEFAULT_INSTALL_DIR="/opt/gruntwork/bash-commons" | ||
readonly DEFAULT_USER_NAME="$(os_get_current_users_name)" | ||
readonly DEFAULT_USER_GROUP_NAME="$(os_get_current_users_group)" | ||
|
||
function print_usage { | ||
echo | ||
echo "Usage: install.sh [options]" | ||
echo | ||
echo "This script is used by the Gruntwork Installter to install the bash-commons library." | ||
echo | ||
echo "Options:" | ||
echo | ||
echo -e " --dir\t\tInstall the bash-commons library into this folder. Default: $DEFAULT_INSTALL_DIR" | ||
echo -e " --owner\tMake this user the owner of the folder in --dir. Default: $DEFAULT_USER_NAME." | ||
echo -e " --group\tMake this group the owner of the folder in --dir. Default: $DEFAULT_USER_GROUP_NAME." | ||
echo -e " --help\tShow this help text and exit." | ||
echo | ||
echo "Example:" | ||
echo | ||
echo " gruntwork-install --repo https://github.com/gruntwork-io/bash-commons --module-name bash-commons --tag v0.0.1 --module-param dir=/opt/gruntwork/bash-commons" | ||
} | ||
|
||
function install { | ||
local install_dir="$DEFAULT_INSTALL_DIR" | ||
local install_dir_owner="$DEFAULT_USER_NAME" | ||
local install_dir_group="$DEFAULT_USER_GROUP_NAME" | ||
|
||
while [[ $# > 0 ]]; do | ||
local key="$1" | ||
|
||
case "$key" in | ||
--dir) | ||
assert_not_empty "$key" "$2" | ||
install_dir="$2" | ||
shift | ||
;; | ||
--owner) | ||
assert_not_empty "$key" "$2" | ||
install_dir_owner="$2" | ||
shift | ||
;; | ||
--group) | ||
assert_not_empty "$key" "$2" | ||
install_dir_group="$2" | ||
shift | ||
;; | ||
--help) | ||
print_usage | ||
exit | ||
;; | ||
*) | ||
log_error "Unrecognized argument: $key" | ||
print_usage | ||
exit 1 | ||
;; | ||
esac | ||
|
||
shift | ||
done | ||
|
||
log_info "Starting install of bash-commons..." | ||
|
||
sudo mkdir -p "$install_dir" | ||
sudo cp -R "$BASH_COMMONS_SRC_DIR/." "$install_dir" | ||
sudo chown -R "$install_dir_owner:$install_dir_group" "$install_dir" | ||
|
||
log_info "Successfully installed bash-commons!" | ||
} | ||
|
||
install "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
# Returns 0 if the given item (needle) is in the given array (haystack); returns 1 otherwise. | ||
function array_contains { | ||
local readonly needle="$1" | ||
shift | ||
local readonly haystack=("$@") | ||
|
||
local item | ||
for item in "${haystack[@]}"; do | ||
if [[ "$item" == "$needle" ]]; then | ||
return 0 | ||
fi | ||
done | ||
|
||
return 1 | ||
} | ||
|
||
# Joins the elements of the given array into a string with the given separator between each element. | ||
# | ||
# Examples: | ||
# | ||
# array_join "," ("A" "B" "C") | ||
# Returns: "A,B,C" | ||
# | ||
function array_join { | ||
local readonly separator="$1" | ||
shift | ||
local readonly values=("$@") | ||
|
||
local out="" | ||
for (( i=0; i<"${#values[@]}"; i++ )); do | ||
if [[ "$i" -gt 0 ]]; then | ||
out="${out}${separator}" | ||
fi | ||
out="${out}${values[i]}" | ||
done | ||
|
||
echo -n "$out" | ||
} |
Oops, something went wrong.