feat(merge): add tombstone support for 3-way merge (bd-0ih)

Implements tombstone merge semantics per design in bd-zvg:
- Add tombstone fields to merge.Issue struct (deleted_at, deleted_by, etc.)
- Add IsTombstone() and IsExpiredTombstone() helper functions
- Implement tombstone-wins-unless-expired logic
- Add tombstone vs tombstone merge (later deleted_at wins)
- Add merge3WayWithTTL() for configurable TTL
- Update mergeStatus() to handle tombstone status as safety measure

Merge rule summary:
| Left      | Right     | Condition   | Result                |
|-----------|-----------|-------------|-----------------------|
| Live      | Tombstone | Not expired | Tombstone             |
| Live      | Tombstone | Expired     | Live (resurrection)   |
| Tombstone | Live      | Not expired | Tombstone             |
| Tombstone | Live      | Expired     | Live (resurrection)   |
| Tombstone | Tombstone | -           | Later deleted_at wins |

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Steve Yegge
2025-12-05 16:33:49 -08:00
parent 2adba0d8e0
commit 975443e08b
2 changed files with 632 additions and 6 deletions

View File

@@ -50,6 +50,11 @@ type Issue struct {
CreatedBy string `json:"created_by,omitempty"`
Dependencies []Dependency `json:"dependencies,omitempty"`
RawLine string `json:"-"` // Store original line for conflict output
// Tombstone fields (bd-0ih): inline soft-delete support for merge
DeletedAt string `json:"deleted_at,omitempty"` // When the issue was deleted
DeletedBy string `json:"deleted_by,omitempty"` // Who deleted the issue
DeleteReason string `json:"delete_reason,omitempty"` // Why the issue was deleted
OriginalType string `json:"original_type,omitempty"` // Issue type before deletion
}
// Dependency represents an issue dependency
@@ -233,7 +238,64 @@ func makeKey(issue Issue) IssueKey {
}
}
// StatusTombstone is the status value for soft-deleted issues
const StatusTombstone = "tombstone"
// DefaultTombstoneTTL is the default time-to-live for tombstones (30 days)
const DefaultTombstoneTTL = 30 * 24 * time.Hour
// ClockSkewGrace is added to TTL to handle clock drift between machines
const ClockSkewGrace = 1 * time.Hour
// IsTombstone returns true if the issue has been soft-deleted
func IsTombstone(issue Issue) bool {
return issue.Status == StatusTombstone
}
// IsExpiredTombstone returns true if the tombstone has exceeded its TTL.
// Non-tombstone issues always return false.
// ttl is the configured TTL duration; if zero, DefaultTombstoneTTL is used.
func IsExpiredTombstone(issue Issue, ttl time.Duration) bool {
// Non-tombstones never expire
if !IsTombstone(issue) {
return false
}
// Tombstones without DeletedAt are not expired (safety: shouldn't happen in valid data)
if issue.DeletedAt == "" {
return false
}
// Use default TTL if not specified
if ttl == 0 {
ttl = DefaultTombstoneTTL
}
// Parse the deleted_at timestamp
deletedAt, err := time.Parse(time.RFC3339Nano, issue.DeletedAt)
if err != nil {
deletedAt, err = time.Parse(time.RFC3339, issue.DeletedAt)
if err != nil {
// Invalid timestamp means not expired (safety)
return false
}
}
// Add clock skew grace period to the TTL
effectiveTTL := ttl + ClockSkewGrace
// Check if the tombstone has exceeded its TTL
expirationTime := deletedAt.Add(effectiveTTL)
return time.Now().After(expirationTime)
}
func merge3Way(base, left, right []Issue) ([]Issue, []string) {
return merge3WayWithTTL(base, left, right, DefaultTombstoneTTL)
}
// merge3WayWithTTL performs a 3-way merge with configurable tombstone TTL.
// This is the core merge function that handles tombstone semantics.
func merge3WayWithTTL(base, left, right []Issue, ttl time.Duration) ([]Issue, []string) {
// Build maps for quick lookup
baseMap := make(map[IssueKey]Issue)
for _, issue := range base {
@@ -277,9 +339,46 @@ func merge3Way(base, left, right []Issue) ([]Issue, []string) {
leftIssue, inLeft := leftMap[key]
rightIssue, inRight := rightMap[key]
// Determine tombstone status
leftTombstone := inLeft && IsTombstone(leftIssue)
rightTombstone := inRight && IsTombstone(rightIssue)
// Handle different scenarios
if inBase && inLeft && inRight {
// All three present - merge
// All three present - handle tombstone cases first
// CASE: Both are tombstones - merge tombstones (later deleted_at wins)
if leftTombstone && rightTombstone {
merged := mergeTombstones(leftIssue, rightIssue)
result = append(result, merged)
continue
}
// CASE: Left is tombstone, right is live
if leftTombstone && !rightTombstone {
if IsExpiredTombstone(leftIssue, ttl) {
// Tombstone expired - resurrection allowed, keep live issue
result = append(result, rightIssue)
} else {
// Tombstone wins
result = append(result, leftIssue)
}
continue
}
// CASE: Right is tombstone, left is live
if rightTombstone && !leftTombstone {
if IsExpiredTombstone(rightIssue, ttl) {
// Tombstone expired - resurrection allowed, keep live issue
result = append(result, leftIssue)
} else {
// Tombstone wins
result = append(result, rightIssue)
}
continue
}
// CASE: Both are live issues - standard merge
merged, conflict := mergeIssue(baseIssue, leftIssue, rightIssue)
if conflict != "" {
conflicts = append(conflicts, conflict)
@@ -287,7 +386,36 @@ func merge3Way(base, left, right []Issue) ([]Issue, []string) {
result = append(result, merged)
}
} else if !inBase && inLeft && inRight {
// Added in both - merge using deterministic rules with empty base
// Added in both - handle tombstone cases
// CASE: Both are tombstones - merge tombstones
if leftTombstone && rightTombstone {
merged := mergeTombstones(leftIssue, rightIssue)
result = append(result, merged)
continue
}
// CASE: Left is tombstone, right is live
if leftTombstone && !rightTombstone {
if IsExpiredTombstone(leftIssue, ttl) {
result = append(result, rightIssue)
} else {
result = append(result, leftIssue)
}
continue
}
// CASE: Right is tombstone, left is live
if rightTombstone && !leftTombstone {
if IsExpiredTombstone(rightIssue, ttl) {
result = append(result, leftIssue)
} else {
result = append(result, rightIssue)
}
continue
}
// CASE: Both are live - merge using deterministic rules with empty base
emptyBase := Issue{
ID: leftIssue.ID,
CreatedAt: leftIssue.CreatedAt,
@@ -296,20 +424,20 @@ func merge3Way(base, left, right []Issue) ([]Issue, []string) {
merged, _ := mergeIssue(emptyBase, leftIssue, rightIssue)
result = append(result, merged)
} else if inBase && inLeft && !inRight {
// Deleted in right, maybe modified in left
// Deleted in right (implicitly), maybe modified in left
// RULE 2: deletion always wins over modification
// This is because deletion is an explicit action that should be preserved
continue
} else if inBase && !inLeft && inRight {
// Deleted in left, maybe modified in right
// Deleted in left (implicitly), maybe modified in right
// RULE 2: deletion always wins over modification
// This is because deletion is an explicit action that should be preserved
continue
} else if !inBase && inLeft && !inRight {
// Added only in left
// Added only in left (could be a tombstone)
result = append(result, leftIssue)
} else if !inBase && !inLeft && inRight {
// Added only in right
// Added only in right (could be a tombstone)
result = append(result, rightIssue)
}
}
@@ -317,6 +445,16 @@ func merge3Way(base, left, right []Issue) ([]Issue, []string) {
return result, conflicts
}
// mergeTombstones merges two tombstones for the same issue.
// The tombstone with the later deleted_at timestamp wins.
func mergeTombstones(left, right Issue) Issue {
// Use later deleted_at as the authoritative tombstone
if isTimeAfter(left.DeletedAt, right.DeletedAt) {
return left
}
return right
}
func mergeIssue(base, left, right Issue) (Issue, string) {
result := Issue{
ID: base.ID,
@@ -361,6 +499,17 @@ func mergeIssue(base, left, right Issue) (Issue, string) {
}
func mergeStatus(base, left, right string) string {
// RULE 0: tombstone is handled at the merge3Way level, not here.
// If a tombstone status reaches here, it means both sides have the same
// issue with possibly different statuses - tombstone should not be one of them
// (that case is handled by the tombstone merge logic).
// However, if somehow one side has tombstone status, preserve it as a safety measure.
if left == StatusTombstone || right == StatusTombstone {
// This shouldn't happen in normal flow - tombstones are handled earlier
// But if it does, tombstone wins (deletion is explicit)
return StatusTombstone
}
// RULE 1: closed always wins over open
// This prevents the insane situation where issues never die
if left == "closed" || right == "closed" {

View File

@@ -5,6 +5,7 @@ import (
"os"
"path/filepath"
"testing"
"time"
)
// TestMergeStatus tests the status merging logic with special rules
@@ -1207,3 +1208,479 @@ func TestMerge3Way_Integration(t *testing.T) {
}
})
}
// TestIsTombstone tests the tombstone detection helper
func TestIsTombstone(t *testing.T) {
tests := []struct {
name string
status string
expected bool
}{
{
name: "tombstone status",
status: "tombstone",
expected: true,
},
{
name: "open status",
status: "open",
expected: false,
},
{
name: "closed status",
status: "closed",
expected: false,
},
{
name: "in_progress status",
status: "in_progress",
expected: false,
},
{
name: "empty status",
status: "",
expected: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
issue := Issue{Status: tt.status}
result := IsTombstone(issue)
if result != tt.expected {
t.Errorf("IsTombstone() = %v, want %v", result, tt.expected)
}
})
}
}
// TestMergeTombstones tests merging two tombstones
func TestMergeTombstones(t *testing.T) {
tests := []struct {
name string
leftDeletedAt string
rightDeletedAt string
expectedSide string // "left" or "right"
}{
{
name: "left deleted later",
leftDeletedAt: "2024-01-02T00:00:00Z",
rightDeletedAt: "2024-01-01T00:00:00Z",
expectedSide: "left",
},
{
name: "right deleted later",
leftDeletedAt: "2024-01-01T00:00:00Z",
rightDeletedAt: "2024-01-02T00:00:00Z",
expectedSide: "right",
},
{
name: "same timestamp - left wins (tie breaker)",
leftDeletedAt: "2024-01-01T00:00:00Z",
rightDeletedAt: "2024-01-01T00:00:00Z",
expectedSide: "left",
},
{
name: "with fractional seconds",
leftDeletedAt: "2024-01-01T00:00:00.123456Z",
rightDeletedAt: "2024-01-01T00:00:00.123455Z",
expectedSide: "left",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
left := Issue{
ID: "bd-test",
Status: StatusTombstone,
DeletedAt: tt.leftDeletedAt,
DeletedBy: "user-left",
}
right := Issue{
ID: "bd-test",
Status: StatusTombstone,
DeletedAt: tt.rightDeletedAt,
DeletedBy: "user-right",
}
result := mergeTombstones(left, right)
if tt.expectedSide == "left" && result.DeletedBy != "user-left" {
t.Errorf("expected left tombstone to win, got right")
}
if tt.expectedSide == "right" && result.DeletedBy != "user-right" {
t.Errorf("expected right tombstone to win, got left")
}
})
}
}
// TestMerge3Way_TombstoneVsLive tests tombstone vs live issue scenarios
func TestMerge3Way_TombstoneVsLive(t *testing.T) {
// Base issue (live)
baseIssue := Issue{
ID: "bd-abc123",
Title: "Original title",
Status: "open",
Priority: 2,
CreatedAt: "2024-01-01T00:00:00Z",
UpdatedAt: "2024-01-01T00:00:00Z",
CreatedBy: "user1",
}
// Recent tombstone (not expired)
recentTombstone := Issue{
ID: "bd-abc123",
Title: "Original title",
Status: StatusTombstone,
Priority: 2,
CreatedAt: "2024-01-01T00:00:00Z",
UpdatedAt: "2024-01-02T00:00:00Z",
CreatedBy: "user1",
DeletedAt: time.Now().Add(-24 * time.Hour).Format(time.RFC3339), // 1 day ago
DeletedBy: "user2",
DeleteReason: "Duplicate issue",
OriginalType: "task",
}
// Expired tombstone (older than TTL)
expiredTombstone := Issue{
ID: "bd-abc123",
Title: "Original title",
Status: StatusTombstone,
Priority: 2,
CreatedAt: "2024-01-01T00:00:00Z",
UpdatedAt: "2024-01-02T00:00:00Z",
CreatedBy: "user1",
DeletedAt: time.Now().Add(-60 * 24 * time.Hour).Format(time.RFC3339), // 60 days ago
DeletedBy: "user2",
DeleteReason: "Duplicate issue",
OriginalType: "task",
}
// Modified live issue
modifiedLive := Issue{
ID: "bd-abc123",
Title: "Updated title",
Status: "in_progress",
Priority: 1,
CreatedAt: "2024-01-01T00:00:00Z",
UpdatedAt: "2024-01-03T00:00:00Z",
CreatedBy: "user1",
}
t.Run("recent tombstone in left wins over live in right", func(t *testing.T) {
base := []Issue{baseIssue}
left := []Issue{recentTombstone}
right := []Issue{modifiedLive}
result, conflicts := merge3Way(base, left, right)
if len(conflicts) != 0 {
t.Errorf("unexpected conflicts: %v", conflicts)
}
if len(result) != 1 {
t.Fatalf("expected 1 issue, got %d", len(result))
}
if result[0].Status != StatusTombstone {
t.Errorf("expected tombstone to win, got status %q", result[0].Status)
}
})
t.Run("recent tombstone in right wins over live in left", func(t *testing.T) {
base := []Issue{baseIssue}
left := []Issue{modifiedLive}
right := []Issue{recentTombstone}
result, conflicts := merge3Way(base, left, right)
if len(conflicts) != 0 {
t.Errorf("unexpected conflicts: %v", conflicts)
}
if len(result) != 1 {
t.Fatalf("expected 1 issue, got %d", len(result))
}
if result[0].Status != StatusTombstone {
t.Errorf("expected tombstone to win, got status %q", result[0].Status)
}
})
t.Run("expired tombstone in left loses to live in right (resurrection)", func(t *testing.T) {
base := []Issue{baseIssue}
left := []Issue{expiredTombstone}
right := []Issue{modifiedLive}
result, conflicts := merge3Way(base, left, right)
if len(conflicts) != 0 {
t.Errorf("unexpected conflicts: %v", conflicts)
}
if len(result) != 1 {
t.Fatalf("expected 1 issue, got %d", len(result))
}
if result[0].Status != "in_progress" {
t.Errorf("expected live issue to win over expired tombstone, got status %q", result[0].Status)
}
if result[0].Title != "Updated title" {
t.Errorf("expected live issue's title, got %q", result[0].Title)
}
})
t.Run("expired tombstone in right loses to live in left (resurrection)", func(t *testing.T) {
base := []Issue{baseIssue}
left := []Issue{modifiedLive}
right := []Issue{expiredTombstone}
result, conflicts := merge3Way(base, left, right)
if len(conflicts) != 0 {
t.Errorf("unexpected conflicts: %v", conflicts)
}
if len(result) != 1 {
t.Fatalf("expected 1 issue, got %d", len(result))
}
if result[0].Status != "in_progress" {
t.Errorf("expected live issue to win over expired tombstone, got status %q", result[0].Status)
}
})
}
// TestMerge3Way_TombstoneVsTombstone tests merging two tombstones
func TestMerge3Way_TombstoneVsTombstone(t *testing.T) {
baseIssue := Issue{
ID: "bd-abc123",
Title: "Original title",
Status: "open",
CreatedAt: "2024-01-01T00:00:00Z",
CreatedBy: "user1",
}
t.Run("later tombstone wins", func(t *testing.T) {
leftTombstone := Issue{
ID: "bd-abc123",
Title: "Original title",
Status: StatusTombstone,
CreatedAt: "2024-01-01T00:00:00Z",
CreatedBy: "user1",
DeletedAt: "2024-01-02T00:00:00Z",
DeletedBy: "user-left",
DeleteReason: "Left reason",
}
rightTombstone := Issue{
ID: "bd-abc123",
Title: "Original title",
Status: StatusTombstone,
CreatedAt: "2024-01-01T00:00:00Z",
CreatedBy: "user1",
DeletedAt: "2024-01-03T00:00:00Z", // Later
DeletedBy: "user-right",
DeleteReason: "Right reason",
}
base := []Issue{baseIssue}
left := []Issue{leftTombstone}
right := []Issue{rightTombstone}
result, conflicts := merge3Way(base, left, right)
if len(conflicts) != 0 {
t.Errorf("unexpected conflicts: %v", conflicts)
}
if len(result) != 1 {
t.Fatalf("expected 1 issue, got %d", len(result))
}
if result[0].DeletedBy != "user-right" {
t.Errorf("expected right tombstone to win (later deleted_at), got DeletedBy %q", result[0].DeletedBy)
}
if result[0].DeleteReason != "Right reason" {
t.Errorf("expected right tombstone's reason, got %q", result[0].DeleteReason)
}
})
}
// TestMerge3Way_TombstoneNoBase tests tombstone scenarios without a base
func TestMerge3Way_TombstoneNoBase(t *testing.T) {
t.Run("tombstone added only in left", func(t *testing.T) {
tombstone := Issue{
ID: "bd-abc123",
Title: "New tombstone",
Status: StatusTombstone,
CreatedAt: "2024-01-01T00:00:00Z",
CreatedBy: "user1",
DeletedAt: "2024-01-02T00:00:00Z",
DeletedBy: "user1",
}
result, conflicts := merge3Way([]Issue{}, []Issue{tombstone}, []Issue{})
if len(conflicts) != 0 {
t.Errorf("unexpected conflicts: %v", conflicts)
}
if len(result) != 1 {
t.Fatalf("expected 1 issue, got %d", len(result))
}
if result[0].Status != StatusTombstone {
t.Errorf("expected tombstone, got status %q", result[0].Status)
}
})
t.Run("tombstone added only in right", func(t *testing.T) {
tombstone := Issue{
ID: "bd-abc123",
Title: "New tombstone",
Status: StatusTombstone,
CreatedAt: "2024-01-01T00:00:00Z",
CreatedBy: "user1",
DeletedAt: "2024-01-02T00:00:00Z",
DeletedBy: "user1",
}
result, conflicts := merge3Way([]Issue{}, []Issue{}, []Issue{tombstone})
if len(conflicts) != 0 {
t.Errorf("unexpected conflicts: %v", conflicts)
}
if len(result) != 1 {
t.Fatalf("expected 1 issue, got %d", len(result))
}
if result[0].Status != StatusTombstone {
t.Errorf("expected tombstone, got status %q", result[0].Status)
}
})
t.Run("tombstone in left vs live in right (no base)", func(t *testing.T) {
recentTombstone := Issue{
ID: "bd-abc123",
Title: "Issue",
Status: StatusTombstone,
CreatedAt: "2024-01-01T00:00:00Z",
CreatedBy: "user1",
DeletedAt: time.Now().Add(-24 * time.Hour).Format(time.RFC3339),
DeletedBy: "user1",
}
live := Issue{
ID: "bd-abc123",
Title: "Issue",
Status: "open",
CreatedAt: "2024-01-01T00:00:00Z",
CreatedBy: "user1",
}
result, conflicts := merge3Way([]Issue{}, []Issue{recentTombstone}, []Issue{live})
if len(conflicts) != 0 {
t.Errorf("unexpected conflicts: %v", conflicts)
}
if len(result) != 1 {
t.Fatalf("expected 1 issue, got %d", len(result))
}
// Recent tombstone should win
if result[0].Status != StatusTombstone {
t.Errorf("expected tombstone to win, got status %q", result[0].Status)
}
})
}
// TestMerge3WayWithTTL tests the TTL-configurable merge function
func TestMerge3WayWithTTL(t *testing.T) {
baseIssue := Issue{
ID: "bd-abc123",
Title: "Original",
Status: "open",
CreatedAt: "2024-01-01T00:00:00Z",
CreatedBy: "user1",
}
// Tombstone deleted 10 days ago
tombstone := Issue{
ID: "bd-abc123",
Title: "Original",
Status: StatusTombstone,
CreatedAt: "2024-01-01T00:00:00Z",
CreatedBy: "user1",
DeletedAt: time.Now().Add(-10 * 24 * time.Hour).Format(time.RFC3339),
DeletedBy: "user2",
}
liveIssue := Issue{
ID: "bd-abc123",
Title: "Updated",
Status: "open",
CreatedAt: "2024-01-01T00:00:00Z",
CreatedBy: "user1",
}
t.Run("with short TTL tombstone is expired", func(t *testing.T) {
// 7 day TTL + 1 hour grace = tombstone (10 days old) is expired
shortTTL := 7 * 24 * time.Hour
base := []Issue{baseIssue}
left := []Issue{tombstone}
right := []Issue{liveIssue}
result, _ := merge3WayWithTTL(base, left, right, shortTTL)
if len(result) != 1 {
t.Fatalf("expected 1 issue, got %d", len(result))
}
// With short TTL, tombstone is expired, live issue wins
if result[0].Status != "open" {
t.Errorf("expected live issue to win with short TTL, got status %q", result[0].Status)
}
})
t.Run("with long TTL tombstone is not expired", func(t *testing.T) {
// 30 day TTL = tombstone (10 days old) is NOT expired
longTTL := 30 * 24 * time.Hour
base := []Issue{baseIssue}
left := []Issue{tombstone}
right := []Issue{liveIssue}
result, _ := merge3WayWithTTL(base, left, right, longTTL)
if len(result) != 1 {
t.Fatalf("expected 1 issue, got %d", len(result))
}
// With long TTL, tombstone is NOT expired, tombstone wins
if result[0].Status != StatusTombstone {
t.Errorf("expected tombstone to win with long TTL, got status %q", result[0].Status)
}
})
}
// TestMergeStatus_Tombstone tests status merging with tombstone
func TestMergeStatus_Tombstone(t *testing.T) {
tests := []struct {
name string
base string
left string
right string
expected string
}{
{
name: "tombstone in left wins over open in right",
base: "open",
left: StatusTombstone,
right: "open",
expected: StatusTombstone,
},
{
name: "tombstone in right wins over open in left",
base: "open",
left: "open",
right: StatusTombstone,
expected: StatusTombstone,
},
{
name: "tombstone in left wins over closed in right",
base: "open",
left: StatusTombstone,
right: "closed",
expected: StatusTombstone,
},
{
name: "both tombstone",
base: "open",
left: StatusTombstone,
right: StatusTombstone,
expected: StatusTombstone,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
result := mergeStatus(tt.base, tt.left, tt.right)
if result != tt.expected {
t.Errorf("mergeStatus(%q, %q, %q) = %q, want %q",
tt.base, tt.left, tt.right, result, tt.expected)
}
})
}
}