2016-06-16 19:34:25 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
# Note that this file is created for test purposes:
|
|
|
|
# 1. It runs inside the Docker container
|
|
|
|
# 2. It does not use `sudo` or anything
|
|
|
|
# 3. If you would like to install `.rpm` package on your system, see `Installation`
|
|
|
|
|
2016-07-02 10:30:49 +00:00
|
|
|
# shellcheck disable=SC1090,SC1091
|
2016-06-16 19:34:25 +00:00
|
|
|
source "${SECRET_PROJECT_ROOT}/utils/build-utils.sh"
|
|
|
|
|
|
|
|
# This folder should contain just one .rpm file:
|
|
|
|
RPM_FILE_LOCATION=$(locate_rpm)
|
|
|
|
|
|
|
|
|
|
|
|
# Integration tests
|
|
|
|
function integration_tests {
|
Version 0.2.2 pre-release
There are a lot of changes, multiple things were refactored: tests,
some commands, building and meta.
Several critical bugs fixed.
Changes:
1. Fixed #74, when `_user_required` was not working after reimporting keys
2. Closes #73, now it is possible to provide multiple emails to the `killperson` command
3. Closes #72, now it is possible to provide multiple emails to the `tell` command
4. Closes #71, now every doc in this project refer to `git-secret.io` instead of old `gh-pages` website
5. Closes #70, now installation section is removed from main `man` file
6. Closes #69, now "See also" section in the `man`s are clickable
7. Closes #61, added "Manual" section to the manuals
8. Refs #38, added `centos` Dockerfile, but `ci` testing is still failing
9. Refs #52, tests are refactored. Added `clean` command tests, removed a lot of hardcoded things, moved tests execution from `./temp` folder to `/tmp`, added a lot of new check in old tests, and some new test cases
10. Refactored `hide` and `clean` commands to be shorter
11. `shellcheck` is now supported with `make lint`
Additional features are not comming to 0.2.2 after this commit.
2017-02-26 13:38:46 +00:00
|
|
|
# Note that `dnf` must be installed.
|
|
|
|
# CentOS 6 does not support `dnf`.
|
|
|
|
|
2016-06-16 19:34:25 +00:00
|
|
|
# Installing the package:
|
|
|
|
dnf install -y "$RPM_FILE_LOCATION"
|
|
|
|
|
|
|
|
# Testing the installation:
|
|
|
|
dnf info "git-secret"
|
|
|
|
which "git-secret"
|
|
|
|
|
|
|
|
# Test the manuals:
|
|
|
|
man --where "git-secret" # .7
|
|
|
|
man --where "git-secret-init" # .1
|
|
|
|
}
|
|
|
|
|
|
|
|
integration_tests
|
|
|
|
|
|
|
|
# Unit tests:
|
2016-07-02 10:30:49 +00:00
|
|
|
# shellcheck disable=SC1090,SC1091
|
2016-06-16 19:34:25 +00:00
|
|
|
source "${SECRET_PROJECT_ROOT}/utils/tests.sh"
|