From a636b8113c15400419de8f193bf75436a400b2a6 Mon Sep 17 00:00:00 2001
From: Peter Evans <18365890+peter-evans@users.noreply.github.com>
Date: Fri, 2 Aug 2024 16:00:46 +0000
Subject: [PATCH] add build file changes test for binary files

---
 __test__/create-or-update-branch.int.test.ts | 21 ++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/__test__/create-or-update-branch.int.test.ts b/__test__/create-or-update-branch.int.test.ts
index 9955fdd..67ef588 100644
--- a/__test__/create-or-update-branch.int.test.ts
+++ b/__test__/create-or-update-branch.int.test.ts
@@ -276,6 +276,27 @@ describe('create-or-update-branch tests', () => {
     expect(fileChanges.deletions).toEqual([{path: TRACKED_FILE}])
   })
 
+  it('tests buildFileChanges with binary files', async () => {
+    await git.checkout(BRANCH, BASE)
+    const filename = 'c/untracked-binary-file'
+    const filepath = path.join(REPO_PATH, filename)
+    const binaryData = Buffer.from([0x00, 0xff, 0x10, 0x20])
+    await fs.promises.mkdir(path.dirname(filepath), {recursive: true})
+    await fs.promises.writeFile(filepath, binaryData)
+    await git.exec(['add', '-A'])
+    await git.commit(['-m', 'Test changes'])
+
+    const fileChanges = await buildFileChanges(git, BASE, BRANCH)
+
+    expect(fileChanges.additions).toEqual([
+      {
+        path: filename,
+        contents: binaryData.toString('base64')
+      }
+    ])
+    expect(fileChanges.deletions.length).toEqual(0)
+  })
+
   it('tests no changes resulting in no new branch being created', async () => {
     const commitMessage = uuidv4()
     const result = await createOrUpdateBranch(