Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add test for embedFile from the file-embed package #2191

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
Open
1 change: 1 addition & 0 deletions test/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,7 @@ let
plugin = callTest ./plugin {};
supported-languages = callTest ./supported-langauges {};
js-template-haskell = callTest ./js-template-haskell {};
embed-file = callTest ./embed-file {};
unit = unitTests;
};

Expand Down
5 changes: 5 additions & 0 deletions test/embed-file/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Revision history for embed-file

## 0.1.0.0 -- YYYY-mm-dd

* First version. Released on an unsuspecting world.
20 changes: 20 additions & 0 deletions test/embed-file/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
Copyright (c) 2024 Hamish Mackenzie

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
15 changes: 15 additions & 0 deletions test/embed-file/app/Main.hs
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{-# LANGUAGE TemplateHaskell #-}
module Main where

import Control.Monad (unless)
import qualified Data.Text as T (pack)
import Data.Text.Encoding (encodeUtf8)
import System.Exit (exitFailure)
import Data.FileEmbed (embedFile, makeRelativeToProject)

main :: IO ()
main = do
let test = $(makeRelativeToProject "app/test.txt" >>= embedFile)
unless (test == encodeUtf8 (T.pack "Hello World\n")) $ do
putStrLn $ "Embedded content was : " <> show test
exitFailure
1 change: 1 addition & 0 deletions test/embed-file/app/test.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Hello World
36 changes: 36 additions & 0 deletions test/embed-file/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Test that embedFile function for the file-embed package works
{ stdenv, lib, project', haskellLib, recurseIntoAttrs, testSrc, compiler-nix-name, evalPackages, buildPackages }:

with lib;

let
project = project' {
inherit compiler-nix-name evalPackages;
src = testSrc "embed-file";
cabalProjectLocal = builtins.readFile ../cabal.project.local
+ lib.optionalString (haskellLib.isCrossHost && stdenv.hostPlatform.isAarch64) ''
constraints: text -simdutf
'';
};

packages = project.hsPkgs;

in recurseIntoAttrs rec {
meta.disabled = stdenv.hostPlatform.isGhcjs
# Could not load 'filezmembedzm0zi0zi16zi0zmL8bqDH6rAX64X4nLQOoPcy_DataziFileEmbed_makeRelativeToProject_closure', dependency unresolved. See top entry above.
|| (builtins.elem compiler-nix-name ["ghc928"] && !haskellLib.isCrossHost && stdenv.hostPlatform.isAarch64 && stdenv.hostPlatform.isMusl)
# /build/source-test-embed-file-root-test-embed-file-exe-embed-file-root/test/embed-file/app: getDirectoryContents:openDirStream: invalid argument (Invalid argument)
|| (builtins.elem compiler-nix-name ["ghc928"] && haskellLib.isCrossHost && stdenv.hostPlatform.isAarch64 && stdenv.hostPlatform.isMusl)
# Failed to lookup symbol: __aarch64_swp8_acq_rel
|| (builtins.elem compiler-nix-name ["ghc947" "ghc948"] && haskellLib.isCrossHost && stdenv.hostPlatform.isAarch64)
;

ifdInputs = {
inherit (project) plan-nix;
};

build = packages.embed-file.components.exes.embed-file;
check = haskellLib.check build;
# build-profiled = packages.embed-file.components.exes.embed-file.profiled;
# check-profiled = haskellLib.check build-profiled;
}
26 changes: 26 additions & 0 deletions test/embed-file/embed-file.cabal
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
cabal-version: 3.4
name: embed-file
version: 0.1.0.0
-- synopsis:
-- description:
license: MIT
license-file: LICENSE
author: Hamish Mackenzie
maintainer: Hamish.K.Mackenzie@gmail.com
-- copyright:
category: Testing
build-type: Simple
extra-doc-files: CHANGELOG.md
-- extra-source-files:

common warnings
ghc-options: -Wall

executable embed-file
import: warnings
main-is: Main.hs
-- other-modules:
-- other-extensions:
build-depends: base, file-embed, text
hs-source-dirs: app
default-language: Haskell2010
Loading