How to encode a PDF file to base64 in groovy?
- 3 years ago
richie, that's what even I thought too. couldn't find any groovy native function to do this. but ended up using Java snippet.
Here is the updated code:
import java.io.File
import java.nio.file.Files
import java.util.Base64//## Get Directories ##//
def dumpFilePath = context.expand( '${#Project#TestDataPath}' )
def docName = context.expand( '${#TestCase#fileName}' )
//## Encode file to Base64 format ##//
log.info "get pdf file from $dumpFilePath"
testFile = new File(dumpFilePath + "$docName")log.info "Encoding the file..."
byte [] bytes = Files.readAllBytes(testFile.toPath())
String encodedFile = Base64.getEncoder().encodeToString(bytes)log.info "Updating encoded file at testCase level property testFile"
testRunner.testCase.setPropertyValue("testFile", "$encodedFile")