Skip to content

Commit 8367d83

Browse files
fixup! moving things to new naming
1 parent 957cd2c commit 8367d83

9 files changed

Lines changed: 16 additions & 16 deletions

File tree

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
```
2-
$ sentry-cli proguard upload tests/integration/_fixtures/proguard.txt --no-upload
2+
$ sentry-cli proguard upload tests/integration/_fixtures/proguard/no-line-info.txt --no-upload
33
? success
4-
warning: ignoring proguard mapping 'tests/integration/_fixtures/proguard.txt': Proguard mapping does not contain line information
4+
warning: ignoring proguard mapping 'tests/integration/_fixtures/proguard/no-line-info.txt': Proguard mapping does not contain line information
55
> skipping upload.
66

77
```
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
```
2-
$ sentry-cli upload-proguard tests/integration/_fixtures/proguard.txt --no-upload
2+
$ sentry-cli upload-proguard tests/integration/_fixtures/proguard/no-line-info.txt --no-upload
33
? success
4-
warning: ignoring proguard mapping 'tests/integration/_fixtures/proguard.txt': Proguard mapping does not contain line information
4+
warning: ignoring proguard mapping 'tests/integration/_fixtures/proguard/no-line-info.txt': Proguard mapping does not contain line information
55
> skipping upload.
66

77
```

tests/integration/_expected_requests/upload_proguard/chunk_upload_needs_upload.bin renamed to tests/integration/_expected_requests/proguard/upload/chunk_upload_needs_upload.bin

File renamed without changes.

tests/integration/_expected_requests/upload_proguard/chunk_upload_two_files.bin renamed to tests/integration/_expected_requests/proguard/upload/chunk_upload_two_files.bin

File renamed without changes.
File renamed without changes.

tests/integration/_fixtures/upload_proguard/mapping-2.txt renamed to tests/integration/_fixtures/proguard/upload/mapping-2.txt

File renamed without changes.

tests/integration/_fixtures/upload_proguard/mapping.txt renamed to tests/integration/_fixtures/proguard/upload/mapping.txt

File renamed without changes.

tests/integration/proguard.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ fn chunk_upload_already_there() {
6464
.assert_cmd([
6565
"proguard",
6666
"upload",
67-
"tests/integration/_fixtures/upload_proguard/mapping.txt",
67+
"tests/integration/_fixtures/proguard/upload/mapping.txt",
6868
])
6969
.with_default_token()
7070
.run_and_assert(AssertCommand::Success)
@@ -76,7 +76,7 @@ fn chunk_upload_needs_upload() {
7676

7777
let call_count = AtomicU8::new(0);
7878
let expected_chunk_body = fs::read(
79-
"tests/integration/_expected_requests/upload_proguard/chunk_upload_needs_upload.bin",
79+
"tests/integration/_expected_requests/proguard/upload/chunk_upload_needs_upload.bin",
8080
)
8181
.expect("expected chunk upload request file should be readable");
8282

@@ -159,7 +159,7 @@ fn chunk_upload_needs_upload() {
159159
.assert_cmd([
160160
"proguard",
161161
"upload",
162-
"tests/integration/_fixtures/upload_proguard/mapping.txt",
162+
"tests/integration/_fixtures/proguard/upload/mapping.txt",
163163
])
164164
.with_default_token()
165165
.run_and_assert(AssertCommand::Success)
@@ -171,7 +171,7 @@ fn chunk_upload_two_files() {
171171

172172
let call_count = AtomicU8::new(0);
173173
let expected_chunk_body =
174-
fs::read("tests/integration/_expected_requests/upload_proguard/chunk_upload_two_files.bin")
174+
fs::read("tests/integration/_expected_requests/proguard/upload/chunk_upload_two_files.bin")
175175
.expect("expected chunk upload request file should be readable");
176176

177177
TestManager::new()
@@ -280,8 +280,8 @@ fn chunk_upload_two_files() {
280280
.assert_cmd([
281281
"proguard",
282282
"upload",
283-
"tests/integration/_fixtures/upload_proguard/mapping.txt",
284-
"tests/integration/_fixtures/upload_proguard/mapping-2.txt",
283+
"tests/integration/_fixtures/proguard/upload/mapping.txt",
284+
"tests/integration/_fixtures/proguard/upload/mapping-2.txt",
285285
])
286286
.with_default_token()
287287
.run_and_assert(AssertCommand::Success)

tests/integration/upload_proguard.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ fn chunk_upload_already_there() {
6363
)
6464
.assert_cmd([
6565
"upload-proguard",
66-
"tests/integration/_fixtures/upload_proguard/mapping.txt",
66+
"tests/integration/_fixtures/proguard/upload/mapping.txt",
6767
])
6868
.with_default_token()
6969
.run_and_assert(AssertCommand::Success)
@@ -75,7 +75,7 @@ fn chunk_upload_needs_upload() {
7575

7676
let call_count = AtomicU8::new(0);
7777
let expected_chunk_body = fs::read(
78-
"tests/integration/_expected_requests/upload_proguard/chunk_upload_needs_upload.bin",
78+
"tests/integration/_expected_requests/proguard/upload/chunk_upload_needs_upload.bin",
7979
)
8080
.expect("expected chunk upload request file should be readable");
8181

@@ -156,7 +156,7 @@ fn chunk_upload_needs_upload() {
156156
)
157157
.assert_cmd([
158158
"upload-proguard",
159-
"tests/integration/_fixtures/upload_proguard/mapping.txt",
159+
"tests/integration/_fixtures/proguard/upload/mapping.txt",
160160
])
161161
.with_default_token()
162162
.run_and_assert(AssertCommand::Success)
@@ -168,7 +168,7 @@ fn chunk_upload_two_files() {
168168

169169
let call_count = AtomicU8::new(0);
170170
let expected_chunk_body =
171-
fs::read("tests/integration/_expected_requests/upload_proguard/chunk_upload_two_files.bin")
171+
fs::read("tests/integration/_expected_requests/proguard/upload/chunk_upload_two_files.bin")
172172
.expect("expected chunk upload request file should be readable");
173173

174174
TestManager::new()
@@ -277,8 +277,8 @@ fn chunk_upload_two_files() {
277277
)
278278
.assert_cmd([
279279
"upload-proguard",
280-
"tests/integration/_fixtures/upload_proguard/mapping.txt",
281-
"tests/integration/_fixtures/upload_proguard/mapping-2.txt",
280+
"tests/integration/_fixtures/proguard/upload/mapping.txt",
281+
"tests/integration/_fixtures/proguard/upload/mapping-2.txt",
282282
])
283283
.with_default_token()
284284
.run_and_assert(AssertCommand::Success)

0 commit comments

Comments
 (0)