Skip to content

Commit

Permalink
Add test for embedFile from the file-embed package
Browse files Browse the repository at this point in the history
  • Loading branch information
hamishmack committed May 9, 2024
1 parent 37f2b4b commit a51b462
Show file tree
Hide file tree
Showing 7 changed files with 91 additions and 0 deletions.
1 change: 1 addition & 0 deletions test/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,7 @@ let
cabal-project-nix-path = callTest ./cabal-project-nix-path {};
plugin = callTest ./plugin {};
supported-languages = callTest ./supported-langauges {};
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.
12 changes: 12 additions & 0 deletions test/embed-file/app/Main.hs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{-# 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 =
unless ($(makeRelativeToProject "app/test.txt" >>= embedFile) == encodeUtf8 (T.pack "Hello World")) 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
26 changes: 26 additions & 0 deletions test/embed-file/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# 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;
};

packages = project.hsPkgs;

in recurseIntoAttrs rec {
meta.disabled = stdenv.hostPlatform.isGhcjs;

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

0 comments on commit a51b462

Please sign in to comment.