forked from toolshed/abra
		
	
		
			
				
	
	
		
			115 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			115 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/usr/bin/env bash
 | |
| 
 | |
| setup_file(){
 | |
|   load "$PWD/tests/integration/helpers/common"
 | |
|   _common_setup
 | |
|   _fetch_recipe
 | |
| }
 | |
| 
 | |
| setup() {
 | |
|   load "$PWD/tests/integration/helpers/common"
 | |
|   _common_setup
 | |
| }
 | |
| 
 | |
| teardown(){
 | |
|   _reset_recipe
 | |
| }
 | |
| 
 | |
| @test "recipe lint" {
 | |
|   run $ABRA recipe lint gitea
 | |
|   assert_success
 | |
|   assert_output --partial 'compose config has expected version'
 | |
| }
 | |
| 
 | |
| @test "retrieve recipe if missing" {
 | |
|   if [[ -d "$ABRA_DIR/recipe/custom-html" ]]; then
 | |
|     run rm -rf "$ABRA_DIR/recipes/custom-html"
 | |
|     assert_success
 | |
|     assert_not_exists "$ABRA_DIR/recipes/custom-html"
 | |
|   fi
 | |
| 
 | |
|   run $ABRA recipe lint custom-html
 | |
|   assert_success
 | |
| 
 | |
|   assert_exists "$ABRA_DIR/recipes/custom-html"
 | |
| }
 | |
| 
 | |
| @test "bail if unstaged changes and no --chaos" {
 | |
|   run bash -c "echo foo >> $ABRA_DIR/recipes/$TEST_RECIPE/foo"
 | |
|   assert_success
 | |
|   assert_exists "$ABRA_DIR/recipes/$TEST_RECIPE/foo"
 | |
| 
 | |
|   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status
 | |
|   assert_success
 | |
|   assert_output --partial 'foo'
 | |
| 
 | |
|   assert_exists "$ABRA_DIR/recipes/$TEST_RECIPE/foo"
 | |
|   assert_equal "$(_git_status)" "?? foo"
 | |
| 
 | |
|   run $ABRA recipe lint "$TEST_RECIPE"
 | |
|   assert_failure
 | |
|   assert_output --partial 'locally unstaged changes'
 | |
| 
 | |
|   run rm -rf "$ABRA_DIR/recipes/$TEST_RECIPE/foo"
 | |
|   assert_not_exists "$ABRA_DIR/recipes/$TEST_RECIPE/foo"
 | |
| }
 | |
| 
 | |
| @test "do not bail if unstaged changes and --chaos" {
 | |
|   run bash -c "echo foo >> $ABRA_DIR/recipes/$TEST_RECIPE/foo"
 | |
|   assert_success
 | |
|   assert_exists "$ABRA_DIR/recipes/$TEST_RECIPE/foo"
 | |
| 
 | |
|   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" status
 | |
|   assert_success
 | |
|   assert_output --partial 'foo'
 | |
| 
 | |
|   assert_exists "$ABRA_DIR/recipes/$TEST_RECIPE/foo"
 | |
|   assert_equal "$(_git_status)" "?? foo"
 | |
| 
 | |
|   run $ABRA recipe lint "$TEST_RECIPE" --chaos
 | |
|   assert_success
 | |
| 
 | |
|   run rm -rf "$ABRA_DIR/recipes/$TEST_RECIPE/foo"
 | |
|   assert_not_exists "$ABRA_DIR/recipes/$TEST_RECIPE/foo"
 | |
| }
 | |
| 
 | |
| @test "ensure recipe up to date if no --offline" {
 | |
|   wantHash=$(_get_n_hash 3)
 | |
| 
 | |
|   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" reset --hard HEAD~3
 | |
|   assert_success
 | |
| 
 | |
|   assert_equal $(_get_current_hash) "$wantHash"
 | |
| 
 | |
|   run $ABRA recipe lint "$TEST_RECIPE"
 | |
|   assert_success
 | |
| 
 | |
|   assert_equal $(_get_head_hash) $(_get_current_hash)
 | |
| }
 | |
| 
 | |
| @test "ensure recipe not up to date if --offline" {
 | |
|   wantHash=$(_get_n_hash 3)
 | |
| 
 | |
|   run git -C "$ABRA_DIR/recipes/$TEST_RECIPE" reset --hard HEAD~3
 | |
|   assert_success
 | |
| 
 | |
|   assert_equal $(_get_current_hash) "$wantHash"
 | |
| 
 | |
|   run $ABRA recipe lint "$TEST_RECIPE" --offline
 | |
|   assert_success
 | |
| 
 | |
|   assert_equal $(_get_current_hash) "$wantHash"
 | |
| }
 | |
| 
 | |
| @test "recipe lint warns on error" {
 | |
|   run $ABRA recipe lint "$TEST_RECIPE"
 | |
|   assert_success
 | |
|   refute_output --partial 'watch out, some critical errors are present'
 | |
| 
 | |
|   run sed -i '/traefik.enable=.*/d' "$ABRA_DIR/recipes/$TEST_RECIPE/compose.yml"
 | |
|   assert_success
 | |
| 
 | |
|   run $ABRA recipe lint "$TEST_RECIPE" --chaos
 | |
|   assert_success --partial 'watch out, some critical errors are present'
 | |
| }
 |