사용하지 않는 파일 정리 전 백업 (Phase 10 완료 후 상태)
This commit is contained in:
@@ -32,12 +32,12 @@ Future<TestResult> runWarehouseTests({
|
||||
'ceo_name': '김창고',
|
||||
'address': '경기도 용인시 처인구 물류단지로 123',
|
||||
'phone': '031-${1000 + (timestamp % 8999)}-${1000 + (timestamp % 8999)}',
|
||||
'email': 'warehouse_${timestamp}@hanmail.net',
|
||||
'email': 'warehouse_$timestamp@hanmail.net',
|
||||
'business_type': '도소매업',
|
||||
'business_item': '물류창고업',
|
||||
'contact_name': '박물류',
|
||||
'contact_phone': '010-${1000 + (timestamp % 8999)}-${1000 + (timestamp % 8999)}',
|
||||
'contact_email': 'contact_${timestamp}@naver.com',
|
||||
'contact_email': 'contact_$timestamp@naver.com',
|
||||
'is_branch': false,
|
||||
},
|
||||
);
|
||||
@@ -91,7 +91,7 @@ Future<TestResult> runWarehouseTests({
|
||||
'address': '경기도 용인시 처인구 백암면 물류단지로 ${100 + (timestamp % 200)}',
|
||||
'manager_name': '이물류',
|
||||
'manager_phone': '010-${2000 + (timestamp % 7999)}-${1000 + (timestamp % 8999)}',
|
||||
'manager_email': 'manager_${timestamp}@daum.net',
|
||||
'manager_email': 'manager_$timestamp@daum.net',
|
||||
'description': '대형 물류 보관 창고',
|
||||
'is_active': true,
|
||||
};
|
||||
@@ -194,7 +194,7 @@ Future<TestResult> runWarehouseTests({
|
||||
currentData['address'] = '경기도 용인시 기흥구 신갈동 물류대로 789';
|
||||
currentData['manager_name'] = '최창고';
|
||||
currentData['manager_phone'] = '010-${3000 + (timestamp % 6999)}-${2000 + (timestamp % 7999)}';
|
||||
currentData['manager_email'] = 'new_manager_${timestamp}@gmail.com';
|
||||
currentData['manager_email'] = 'new_manager_$timestamp@gmail.com';
|
||||
currentData['description'] = '확장된 대형 물류 센터';
|
||||
|
||||
// Optional 필드들
|
||||
@@ -459,7 +459,7 @@ Future<TestResult> runWarehouseTests({
|
||||
'address': '경기도 김포시 대곶면 물류단지 ${i + 1}동',
|
||||
'manager_name': '관리자${i + 1}',
|
||||
'manager_phone': '010-${5000 + i}-${1000 + (timestamp % 8999)}',
|
||||
'manager_email': 'bulk_${i}_${timestamp}@korea.com',
|
||||
'manager_email': 'bulk_${i}_$timestamp@korea.com',
|
||||
'description': '벌크 테스트용 창고 ${i + 1}',
|
||||
'is_active': true,
|
||||
},
|
||||
@@ -526,8 +526,8 @@ void main() {
|
||||
final loginResponse = await dio.post(
|
||||
'$baseUrl/auth/login',
|
||||
data: {
|
||||
'email': 'admin@superport.kr',
|
||||
'password': 'admin123!',
|
||||
'email': 'admin@example.com',
|
||||
'password': 'password123',
|
||||
},
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user