Skip to content

Commit

Permalink
Merge pull request #7657 from obsidiansystems/fix-7655
Browse files Browse the repository at this point in the history
Fix #7655
  • Loading branch information
roberth authored Jan 23, 2023
2 parents a58e9c3 + 0afdf40 commit 0a9acef
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 7 deletions.
4 changes: 1 addition & 3 deletions src/libexpr/primops/context.cc
Original file line number Diff line number Diff line change
Expand Up @@ -83,15 +83,13 @@ static void prim_getContext(EvalState & state, const PosIdx pos, Value * * args,
state.forceString(*args[0], context, pos, "while evaluating the argument passed to builtins.getContext");
auto contextInfos = std::map<StorePath, ContextInfo>();
for (const auto & p : context) {
Path drv;
std::string output;
NixStringContextElem ctx = NixStringContextElem::parse(*state.store, p);
std::visit(overloaded {
[&](NixStringContextElem::DrvDeep & d) {
contextInfos[d.drvPath].allOutputs = true;
},
[&](NixStringContextElem::Built & b) {
contextInfos[b.drvPath].outputs.emplace_back(std::move(output));
contextInfos[b.drvPath].outputs.emplace_back(std::move(b.output));
},
[&](NixStringContextElem::Opaque & o) {
contextInfos[o.path].path = true;
Expand Down
2 changes: 1 addition & 1 deletion tests/lang/eval-okay-context-introspection.exp
Original file line number Diff line number Diff line change
@@ -1 +1 @@
true
[ true true true true true true ]
23 changes: 20 additions & 3 deletions tests/lang/eval-okay-context-introspection.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,24 @@ let
};
};

legit-context = builtins.getContext "${path}${drv.outPath}${drv.foo.outPath}${drv.drvPath}";
combo-path = "${path}${drv.outPath}${drv.foo.outPath}${drv.drvPath}";
legit-context = builtins.getContext combo-path;

constructed-context = builtins.getContext (builtins.appendContext "" desired-context);
in legit-context == constructed-context
reconstructed-path = builtins.appendContext
(builtins.unsafeDiscardStringContext combo-path)
desired-context;

# Eta rule for strings with context.
etaRule = str:
str == builtins.appendContext
(builtins.unsafeDiscardStringContext str)
(builtins.getContext str);

in [
(legit-context == desired-context)
(reconstructed-path == combo-path)
(etaRule "foo")
(etaRule drv.drvPath)
(etaRule drv.foo.outPath)
(etaRule (builtins.unsafeDiscardOutputDependency drv.drvPath))
]

0 comments on commit 0a9acef

Please sign in to comment.