Skip to content

Commit 1d3847e

Browse files
committedFeb 2, 2025
Towards 100% test coverage
1 parent d71c05b commit 1d3847e

File tree

3 files changed

+43
-0
lines changed

3 files changed

+43
-0
lines changed
 

‎.cursorrules

+12
Original file line numberDiff line numberDiff line change
@@ -166,3 +166,15 @@ logger.warn takes ONE string parameter - if you want to add data to the message,
166166
# 2. If jobs are there but not being processed, try restarting the Rails server
167167
# 3. This usually indicates the Puma plugin for Solid Queue got into a bad state
168168
# 4. A restart will reinitialize everything cleanly
169+
170+
# When stubbing File.exist? in tests, make sure to stub ALL possible File.exist? calls that could happen
171+
# during the test execution, not just the ones you're directly testing. Partial stubbing can lead to
172+
# flaky tests that depend on the filesystem state.
173+
#
174+
# Use this pattern:
175+
# 1. Stub all File.exist? calls to return false by default:
176+
# File.stubs(:exist?).returns(false)
177+
# 2. Then override specific paths you care about:
178+
# File.stubs(:exist?).with("specific/path.rb").returns(true)
179+
# 3. Use regex for paths that might be absolute/relative:
180+
# File.stubs(:exist?).with(regexp_matches(/config\/routes\.rb\z/)).returns(true)

‎test/services/app_generation/orchestrator_test.rb

+4
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,11 @@ class OrchestratorTest < ActiveSupport::TestCase
126126
data_repository = mock("data_repository")
127127
data_repository.stubs(:template_path).returns("/nonexistent/path/template.rb")
128128
DataRepositoryService.stubs(:new).with(user: @generated_app.user).returns(data_repository)
129+
# Stub all File.exist? calls to return false by default
130+
File.stubs(:exist?).returns(false)
131+
# Then override specific paths we care about
129132
File.stubs(:exist?).with("/nonexistent/path/template.rb").returns(false)
133+
File.stubs(:exist?).with(regexp_matches(/config\/routes\.rb\z/)).returns(false)
130134

131135
# Expect proper logging
132136
sequence = sequence("error_logging")

‎test/services/local_git_service_test.rb

+27
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,33 @@ def setup
160160
@service.prepare_git_repository(remote_url:)
161161
end
162162

163+
test "ensure_main_branch renames current branch to main" do
164+
@service.expects(:run_command).with("git branch -M main")
165+
@service.ensure_main_branch
166+
end
167+
168+
test "ensure_main_branch integration test - actually renames branch to main" do
169+
# Initialize a git repo with a non-main branch
170+
@service.in_working_directory do
171+
Open3.capture2("git init --quiet")
172+
Open3.capture2("git config user.name 'Test User'")
173+
Open3.capture2("git config user.email 'test@example.com'")
174+
Open3.capture2("git checkout -b master --quiet") # Create master branch
175+
Open3.capture2("git commit --allow-empty -m 'Initial commit' --quiet")
176+
end
177+
178+
# Run the actual method
179+
@service.ensure_main_branch
180+
181+
# Verify the branch was renamed
182+
current_branch = nil
183+
@service.in_working_directory do
184+
current_branch = Open3.capture2("git rev-parse --abbrev-ref HEAD")[0].strip
185+
end
186+
187+
assert_equal "main", current_branch
188+
end
189+
163190
test "raises error when preparing repository in non-existent directory" do
164191
service = LocalGitService.new(working_directory: "/nonexistent", logger: @logger)
165192

0 commit comments

Comments
 (0)