App-karr

 view release on metacpan or  search on metacpan

t/17-log.t  view on Meta::CPAN

use strict;
use warnings;
use Test::More;
use lib 't/lib';
use TestGit qw( require_git_c );
require_git_c();
use File::Temp qw( tempdir );
use JSON::MaybeXS qw( decode_json );
use App::karr::Git;

my $repo = tempdir( CLEANUP => 1 );
system("git init '$repo' 2>/dev/null");
system("git -C '$repo' config user.email 'agent-a\@test.com'");
system("git -C '$repo' config user.name 'Agent A'");

my $git = App::karr::Git->new( dir => $repo );

# Write log entries under two different agent refs
my $ref_a = 'refs/karr/log/agent-a_test.com';
my $line1 = '{"ts":"2026-03-19T10:00:00Z","agent":"agent-a","action":"pick","task_id":1}';
$git->write_ref($ref_a, $line1);

my $line2 = '{"ts":"2026-03-19T10:05:00Z","agent":"agent-a","action":"handoff","task_id":1}';
$git->write_ref($ref_a, "$line1\n$line2");

my $ref_b = 'refs/karr/log/agent-b_test.com';
my $line3 = '{"ts":"2026-03-19T10:02:00Z","agent":"agent-b","action":"pick","task_id":2}';
$git->write_ref($ref_b, $line3);

# Read and verify
my $output_a = $git->read_ref($ref_a);
my $output_b = $git->read_ref($ref_b);
ok $output_a, 'agent-a log ref exists';
ok $output_b, 'agent-b log ref exists';

# Parse and merge
my @entries;
for my $log_content ($output_a, $output_b) {
    for my $line (split /\n/, $log_content) {
        push @entries, decode_json($line);
    }
}
@entries = sort { $a->{ts} cmp $b->{ts} } @entries;

is scalar @entries, 3, 'three total log entries';
is $entries[0]{action}, 'pick', 'first by time: pick by agent-a';
is $entries[1]{action}, 'pick', 'second: pick by agent-b';
is $entries[2]{action}, 'handoff', 'third: handoff by agent-a';

# Cmd::Log enumerates log refs natively via Git::Native list_refs.
# Regression: it previously called a nonexistent _git_cmd and would have
# died as soon as any refs/karr/log/* ref existed.
my @log_refs = sort $git->list_refs('refs/karr/log/');
is scalar @log_refs, 2, 'list_refs finds both log refs';
is_deeply \@log_refs, [ sort( $ref_a, $ref_b ) ], 'log ref names match';

done_testing;



( run in 1.388 second using v1.01-cache-2.11-cpan-e1769b4cff6 )