- avoids having to modify them in the first place so less changes
  to the SUT
- will help with transition to osbuild-composer backend
- each test which needs a blueprint either declares it on its own
  (some already do this) or may use a shared blueprints from the
  tests lib dir
Cherry-picked from 7b08fa8838
Related: rhbz#1825190
		
	
			
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| # Note: execute this file from the project root directory
 | |
| 
 | |
| #####
 | |
| #
 | |
| # Make sure a google compose can be built without errors
 | |
| #
 | |
| #####
 | |
| 
 | |
| set -e
 | |
| 
 | |
| . /usr/share/beakerlib/beakerlib.sh
 | |
| . $(dirname $0)/lib/lib.sh
 | |
| 
 | |
| CLI="${CLI:-./src/bin/composer-cli}"
 | |
| 
 | |
| rlJournalStart
 | |
|     rlPhasStartTest "compose start"
 | |
|         rlAssertEquals "SELinux operates in enforcing mode" "$(getenforce)" "Enforcing"
 | |
|         rlRun -t -c "$CLI blueprints push $(dirname $0)/lib/test-http-server.toml"
 | |
|         UUID=`$CLI compose start test-http-server google`
 | |
|         rlAssertEquals "exit code should be zero" $? 0
 | |
| 
 | |
|         UUID=`echo $UUID | cut -f 2 -d ' '`
 | |
|     rlPhaseEnd
 | |
| 
 | |
|     rlPhaseStart "compose finished"
 | |
|         wait_for_compose $UUID
 | |
|     rlPhaseEnd
 | |
| 
 | |
|     rlPhaseStart "compose check"
 | |
|         $CLI compose image $UUID
 | |
|         rlAssertEquals "exit code should be zero" $? 0
 | |
| 
 | |
|         fileList=$(gzip -cd "$UUID-disk.tar.gz" | tar tf -)
 | |
|         rlAssertEquals "archive should contain disk.raw" "$fileList" "disk.raw"
 | |
|     rlPhaseEnd
 | |
| 
 | |
|     rlPhaseStartCleanup
 | |
|         rlRun "rm -rf $UUID-disk.tar.gz"
 | |
|         rlRun -t -c "$CLI compose delete $UUID"
 | |
|     rlPhaseEnd
 | |
| 
 | |
| rlJournalEnd
 | |
| rlJournalPrintText
 |