Amin Hassani | 2379503 | 2020-11-24 14:38:55 -0800 | [diff] [blame] | 1 | // |
| 2 | // Copyright (C) 2020 The Android Open Source Project |
| 3 | // |
| 4 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | // you may not use this file except in compliance with the License. |
| 6 | // You may obtain a copy of the License at |
| 7 | // |
| 8 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | // |
| 10 | // Unless required by applicable law or agreed to in writing, software |
| 11 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | // See the License for the specific language governing permissions and |
| 14 | // limitations under the License. |
| 15 | // |
| 16 | |
| 17 | #include <gtest/gtest.h> |
| 18 | |
| 19 | #include "update_engine/payload_consumer/install_plan.h" |
| 20 | |
| 21 | namespace chromeos_update_engine { |
| 22 | |
| 23 | TEST(InstallPlanTest, Dump) { |
Tomasz Wasilczyk | 95bc6fb | 2023-11-16 09:19:50 -0800 | [diff] [blame] | 24 | InstallPlan install_plan; |
| 25 | install_plan.download_url = "foo-download-url"; |
| 26 | install_plan.version = "foo-version"; |
| 27 | install_plan.payloads = {{ |
| 28 | .payload_urls = {"url1", "url2"}, |
| 29 | .metadata_signature = "foo-signature", |
| 30 | .hash = {0xb2, 0xb3}, |
| 31 | .fp = "foo-fp", |
| 32 | .app_id = "foo-app-id", |
| 33 | }}; |
| 34 | install_plan.source_slot = BootControlInterface::kInvalidSlot; |
| 35 | install_plan.target_slot = BootControlInterface::kInvalidSlot; |
| 36 | install_plan.partitions = {{ |
| 37 | .name = "foo-partition_name", |
| 38 | .source_path = "foo-source-path", |
| 39 | .source_hash = {0xb1, 0xb2}, |
| 40 | .target_path = "foo-target-path", |
| 41 | .readonly_target_path = "mountable-device", |
| 42 | .target_hash = {0xb3, 0xb4}, |
| 43 | .postinstall_path = "foo-path", |
| 44 | .filesystem_type = "foo-type", |
| 45 | }}; |
Amin Hassani | 2379503 | 2020-11-24 14:38:55 -0800 | [diff] [blame] | 46 | |
| 47 | EXPECT_EQ(install_plan.ToString(), |
| 48 | R"(type: new_update |
| 49 | version: foo-version |
| 50 | source_slot: INVALID |
| 51 | target_slot: INVALID |
| 52 | initial url: foo-download-url |
| 53 | hash_checks_mandatory: false |
| 54 | powerwash_required: false |
| 55 | switch_slot_on_reboot: true |
| 56 | run_post_install: true |
| 57 | is_rollback: false |
| 58 | rollback_data_save_requested: false |
| 59 | write_verity: true |
| 60 | Partition: foo-partition_name |
| 61 | source_size: 0 |
| 62 | source_path: foo-source-path |
| 63 | source_hash: B1B2 |
| 64 | target_size: 0 |
| 65 | target_path: foo-target-path |
| 66 | target_hash: B3B4 |
| 67 | run_postinstall: false |
| 68 | postinstall_path: foo-path |
Kelvin Zhang | a9b5d8c | 2021-05-05 09:17:46 -0400 | [diff] [blame] | 69 | readonly_target_path: mountable-device |
Amin Hassani | 2379503 | 2020-11-24 14:38:55 -0800 | [diff] [blame] | 70 | filesystem_type: foo-type |
| 71 | Payload: 0 |
| 72 | urls: (url1,url2) |
| 73 | size: 0 |
| 74 | metadata_size: 0 |
| 75 | metadata_signature: foo-signature |
| 76 | hash: B2B3 |
| 77 | type: unknown |
| 78 | fingerprint: foo-fp |
| 79 | app_id: foo-app-id |
| 80 | already_applied: false)"); |
| 81 | } |
| 82 | |
| 83 | } // namespace chromeos_update_engine |