Rebrand from Casera/MyCrib to honeyDue

Total rebrand across KMM project:
- Kotlin package: com.example.casera -> com.tt.honeyDue (dirs + declarations)
- Gradle: rootProject.name, namespace, applicationId
- Android: manifest, strings.xml (all languages), widget resources
- iOS: pbxproj bundle IDs, Info.plist, entitlements, xcconfig
- iOS directories: Casera/ -> HoneyDue/, CaseraTests/ -> HoneyDueTests/, etc.
- Swift source: all class/struct/enum renames
- Deep links: casera:// -> honeydue://, .casera -> .honeydue
- App icons replaced with honeyDue honeycomb icon
- Domains: casera.treytartt.com -> honeyDue.treytartt.com
- Bundle IDs: com.tt.casera -> com.tt.honeyDue
- Database table names preserved

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Trey t
2026-03-07 06:33:57 -06:00
parent 9c574c4343
commit 1e2adf7660
450 changed files with 1730 additions and 1788 deletions

View File

@@ -1,4 +1,4 @@
# MyCrib iOS UI Tests - Complete Rewrite Summary
# HoneyDue iOS UI Tests - Complete Rewrite Summary
## ✅ Status: BUILD SUCCEEDED
@@ -152,10 +152,10 @@ All UI tests have been completely rewritten from scratch with comprehensive edge
- `takeScreenshot(named:)` - Named screenshots
### 5. **AccessibilityIdentifiers.swift** (213 lines)
Copied to MyCribUITests folder for UI test access without `@testable import`.
Copied to HoneyDueUITests folder for UI test access without `@testable import`.
### 6. **MyCribUITests.swift & MyCribUITestsLaunchTests.swift**
Updated to remove `@testable import MyCrib` (UI tests run in separate process).
### 6. **HoneyDueUITests.swift & HoneyDueUITestsLaunchTests.swift**
Updated to remove `@testable import HoneyDue` (UI tests run in separate process).
## 🗑️ Removed Files
- AuthenticationUITests.swift (old, had @testable import)
@@ -231,26 +231,26 @@ All tests compile successfully with no errors. Only warnings are from the main a
1. **Fix AccessibilityIdentifiers Target Membership:**
- Open `iosApp.xcodeproj` in Xcode
- Select `iosApp/Helpers/AccessibilityIdentifiers.swift` in Project Navigator
- In File Inspector (right panel), **uncheck** "MyCribUITests" from Target Membership
- In File Inspector (right panel), **uncheck** "HoneyDueUITests" from Target Membership
- Only `iosApp` should be checked
- The copy in `MyCribUITests/AccessibilityIdentifiers.swift` should have "MyCribUITests" checked
- The copy in `HoneyDueUITests/AccessibilityIdentifiers.swift` should have "HoneyDueUITests" checked
2. **Run Tests:**
```bash
# Run all UI tests
xcodebuild test -project iosApp.xcodeproj -scheme iosApp \
-destination 'platform=iOS Simulator,name=iPhone 17' \
-only-testing:MyCribUITests
-only-testing:HoneyDueUITests
# Run specific test class
xcodebuild test -project iosApp.xcodeproj -scheme iosApp \
-destination 'platform=iOS Simulator,name=iPhone 17' \
-only-testing:MyCribUITests/ComprehensiveAuthenticationTests
-only-testing:HoneyDueUITests/ComprehensiveAuthenticationTests
# Run specific test
xcodebuild test -project iosApp.xcodeproj -scheme iosApp \
-destination 'platform=iOS Simulator,name=iPhone 17' \
-only-testing:MyCribUITests/ComprehensiveAuthenticationTests/testLoginWithValidCredentials
-only-testing:HoneyDueUITests/ComprehensiveAuthenticationTests/testLoginWithValidCredentials
```
## 🎯 Test Philosophy