1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712
|
// Copyright 2025 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ai/ai_model_download_progress_manager.h"
#include <cstdint>
#include "base/barrier_closure.h"
#include "base/files/file_util.h"
#include "base/files/scoped_temp_dir.h"
#include "base/task/current_thread.h"
#include "base/task/sequenced_task_runner.h"
#include "base/test/gtest_util.h"
#include "base/time/time.h"
#include "chrome/browser/ai/ai_test_utils.h"
#include "chrome/browser/ai/ai_utils.h"
#include "testing/gmock/include/gmock/gmock-matchers.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace on_device_ai {
using component_updater::CrxUpdateItem;
using testing::_;
using update_client::ComponentState;
class AIModelDownloadProgressManagerTest : public testing::Test {
public:
AIModelDownloadProgressManagerTest() = default;
~AIModelDownloadProgressManagerTest() override = default;
protected:
// Send a download update.
void SendUpdate(const AITestUtils::FakeComponent& component,
ComponentState state,
uint64_t downloaded_bytes) {
component_update_service_.SendUpdate(
component.CreateUpdateItem(state, downloaded_bytes));
}
void FastForwardBy(base::TimeDelta delta) {
task_environment_.FastForwardBy(delta);
}
AITestUtils::MockComponentUpdateService component_update_service_;
private:
void SetUp() override {
EXPECT_CALL(component_update_service_, GetComponentDetails(_, _))
.WillRepeatedly([](const std::string& id, CrxUpdateItem* item) {
item->state = update_client::ComponentState::kNew;
// Currently the `AIDownloadProgressManager` doesn't check these
// fields, so we can set them to anything.
item->id = id;
item->downloaded_bytes = 0;
item->total_bytes = 100;
return true;
});
}
base::test::SingleThreadTaskEnvironment task_environment_{
base::test::TaskEnvironment::TimeSource::MOCK_TIME};
};
TEST_F(AIModelDownloadProgressManagerTest,
ReporterIsDestroyedWhenRemoteIsDisconnected) {
AIModelDownloadProgressManager manager;
// Should start with no reporters.
EXPECT_EQ(manager.GetNumberOfReporters(), 0);
AITestUtils::FakeComponent component("component_id", 100);
{
// Adding an Observer, should create a reporter.
AITestUtils::FakeMonitor monitor1;
manager.AddObserver(&component_update_service_,
monitor1.BindNewPipeAndPassRemote(), {component.id()});
EXPECT_EQ(manager.GetNumberOfReporters(), 1);
{
// Adding an Observer, should create a reporter.
AITestUtils::FakeMonitor monitor2;
manager.AddObserver(&component_update_service_,
monitor2.BindNewPipeAndPassRemote(),
{component.id()});
EXPECT_EQ(manager.GetNumberOfReporters(), 2);
}
// `manager` should have destroyed the `Reporter` associated with
// `monitor2`.
base::test::RunUntil([&]() { return manager.GetNumberOfReporters() == 1; });
}
// `manager` should have destroyed the `Reporter` associated with
// `monitor1`.
base::test::RunUntil([&]() { return manager.GetNumberOfReporters() == 0; });
}
TEST_F(AIModelDownloadProgressManagerTest, FirstUpdateIsReportedAsZero) {
AIModelDownloadProgressManager manager;
AITestUtils::FakeMonitor monitor;
AITestUtils::FakeComponent component("component_id", 100);
manager.AddObserver(&component_update_service_,
monitor.BindNewPipeAndPassRemote(), {component.id()});
// No events should be fired until the first update.
monitor.ExpectNoUpdate();
FastForwardBy(base::Milliseconds(51));
// The first update should be reported as zero. And `total_bytes` should
// always be `kNormalizedProgressMax` (0x10000).
SendUpdate(component, ComponentState::kDownloading, 10);
monitor.ExpectReceivedUpdate(0, AIUtils::kNormalizedDownloadProgressMax);
// No other events should be fired.
FastForwardBy(base::Milliseconds(51));
}
TEST_F(AIModelDownloadProgressManagerTest, ProgressIsNormalized) {
AIModelDownloadProgressManager manager;
AITestUtils::FakeMonitor monitor;
AITestUtils::FakeComponent component("component_id", 100);
manager.AddObserver(&component_update_service_,
monitor.BindNewPipeAndPassRemote(), {component.id()});
// Should receive the first update.
SendUpdate(component, ComponentState::kDownloading, 0);
monitor.ExpectReceivedNormalizedUpdate(0, component.total_bytes());
// Wait more than 50ms so we can receive the next event.
FastForwardBy(base::Milliseconds(51));
// The second update should have its downloaded_bytes normalized.
uint64_t downloaded_bytes = 15;
uint64_t normalized_downloaded_bytes =
AIUtils::NormalizeModelDownloadProgress(downloaded_bytes,
component.total_bytes());
SendUpdate(component, ComponentState::kDownloading, downloaded_bytes);
monitor.ExpectReceivedUpdate(normalized_downloaded_bytes,
AIUtils::kNormalizedDownloadProgressMax);
}
TEST_F(AIModelDownloadProgressManagerTest,
AlreadyDownloadedBytesArentIncludedInProgress) {
AIModelDownloadProgressManager manager;
AITestUtils::FakeMonitor monitor;
AITestUtils::FakeComponent component("component_id", 100);
int64_t already_downloaded_bytes = 10;
manager.AddObserver(&component_update_service_,
monitor.BindNewPipeAndPassRemote(), {component.id()});
// Send the first update with the already downloaded bytes for `component`.
SendUpdate(component, ComponentState::kDownloading, already_downloaded_bytes);
monitor.ExpectReceivedNormalizedUpdate(0, component.total_bytes());
// Wait more than 50ms so we can receive the next event.
FastForwardBy(base::Milliseconds(51));
// The second update shouldn't include any already downloaded bytes.
uint64_t downloaded_bytes = already_downloaded_bytes + 5;
uint64_t normalized_downloaded_bytes =
AIUtils::NormalizeModelDownloadProgress(
downloaded_bytes - already_downloaded_bytes,
component.total_bytes() - already_downloaded_bytes);
SendUpdate(component, ComponentState::kDownloading, downloaded_bytes);
monitor.ExpectReceivedUpdate(normalized_downloaded_bytes,
AIUtils::kNormalizedDownloadProgressMax);
}
TEST_F(AIModelDownloadProgressManagerTest,
MaxIsSentWhenDownloadedBytesEqualsTotalBytes) {
AIModelDownloadProgressManager manager;
AITestUtils::FakeMonitor monitor;
AITestUtils::FakeComponent component(
"component_id", AIUtils::kNormalizedDownloadProgressMax * 5);
manager.AddObserver(&component_update_service_,
monitor.BindNewPipeAndPassRemote(), {component.id()});
// Should receive the zero update.
SendUpdate(component, ComponentState::kDownloading, 10);
monitor.ExpectReceivedNormalizedUpdate(0, component.total_bytes());
// Wait more than 50ms so we can receive the next event.
FastForwardBy(base::Milliseconds(51));
// Sending less than the total bytes should not send the
// `kNormalizedDownloadProgressMax`.
SendUpdate(component, ComponentState::kDownloading,
component.total_bytes() - 1);
monitor.ExpectReceivedUpdate(AIUtils::kNormalizedDownloadProgressMax - 1,
AIUtils::kNormalizedDownloadProgressMax);
// Sending the total bytes should send the `kNormalizedDownloadProgressMax`.
SendUpdate(component, ComponentState::kDownloading, component.total_bytes());
monitor.ExpectReceivedUpdate(AIUtils::kNormalizedDownloadProgressMax,
AIUtils::kNormalizedDownloadProgressMax);
}
TEST_F(AIModelDownloadProgressManagerTest,
MaxIsSentWhenDownloadedBytesEqualsTotalBytesForFirstUpdate) {
AIModelDownloadProgressManager manager;
AITestUtils::FakeMonitor monitor;
AITestUtils::FakeComponent component(
"component_id", AIUtils::kNormalizedDownloadProgressMax * 5);
manager.AddObserver(&component_update_service_,
monitor.BindNewPipeAndPassRemote(), {component.id()});
// If the first update has downloaded bytes equal to total bytes, then both
// the the zero and max events should be fired.
SendUpdate(component, ComponentState::kDownloading, component.total_bytes());
monitor.ExpectReceivedNormalizedUpdate(0, component.total_bytes());
monitor.ExpectReceivedUpdate(AIUtils::kNormalizedDownloadProgressMax,
AIUtils::kNormalizedDownloadProgressMax);
}
TEST_F(AIModelDownloadProgressManagerTest,
DoesntReceiveUpdatesForNonDownloadEvents) {
AIModelDownloadProgressManager manager;
AITestUtils::FakeMonitor monitor;
AITestUtils::FakeComponent component("component_id", 100);
manager.AddObserver(&component_update_service_,
monitor.BindNewPipeAndPassRemote(), {component.id()});
// Doesn't receive any update for these event states.
for (const auto state : {
ComponentState::kNew,
ComponentState::kChecking,
ComponentState::kCanUpdate,
ComponentState::kUpdated,
ComponentState::kUpdateError,
ComponentState::kRun,
ComponentState::kLastStatus,
}) {
SendUpdate(component, state, 10);
monitor.ExpectNoUpdate();
FastForwardBy(base::Milliseconds(51));
}
}
TEST_F(AIModelDownloadProgressManagerTest,
DoesntReceiveUpdatesForEventsWithNegativeDownloadedBytes) {
AIModelDownloadProgressManager manager;
AITestUtils::FakeMonitor monitor;
AITestUtils::FakeComponent component("component_id", 100);
manager.AddObserver(&component_update_service_,
monitor.BindNewPipeAndPassRemote(), {component.id()});
// Doesn't receive an update when the downloaded bytes are negative.
SendUpdate(component, ComponentState::kDownloading, -1);
monitor.ExpectNoUpdate();
FastForwardBy(base::Milliseconds(51));
}
TEST_F(AIModelDownloadProgressManagerTest,
DoesntReceiveUpdatesForEventsWithNegativeTotalBytes) {
AIModelDownloadProgressManager manager;
AITestUtils::FakeMonitor monitor;
AITestUtils::FakeComponent component("component_id", -1);
manager.AddObserver(&component_update_service_,
monitor.BindNewPipeAndPassRemote(), {component.id()});
// Doesn't receive an update when the total bytes are negative.
SendUpdate(component, ComponentState::kDownloading, 0);
monitor.ExpectNoUpdate();
FastForwardBy(base::Milliseconds(51));
}
TEST_F(AIModelDownloadProgressManagerTest,
DoesntReceiveUpdatesForComponentsNotObserving) {
AIModelDownloadProgressManager manager;
AITestUtils::FakeMonitor monitor;
AITestUtils::FakeComponent component_observed("component_id1", 100);
AITestUtils::FakeComponent component_not_observed("component_id2", 100);
manager.AddObserver(&component_update_service_,
monitor.BindNewPipeAndPassRemote(),
{component_observed.id()});
// Doesn't receive any update for these event states.
SendUpdate(component_not_observed, ComponentState::kDownloading, 10);
monitor.ExpectNoUpdate();
FastForwardBy(base::Milliseconds(51));
}
TEST_F(AIModelDownloadProgressManagerTest,
ReceiveZeroAndHundredPercentForNoComponents) {
AIModelDownloadProgressManager manager;
AITestUtils::FakeMonitor monitor;
manager.AddObserver(&component_update_service_,
monitor.BindNewPipeAndPassRemote(), {});
monitor.ExpectReceivedUpdate(0, AIUtils::kNormalizedDownloadProgressMax);
monitor.ExpectReceivedUpdate(AIUtils::kNormalizedDownloadProgressMax,
AIUtils::kNormalizedDownloadProgressMax);
}
TEST_F(AIModelDownloadProgressManagerTest, OnlyReceivesUpdatesEvery50ms) {
AIModelDownloadProgressManager manager;
AITestUtils::FakeMonitor monitor;
AITestUtils::FakeComponent component("component_id", 100);
manager.AddObserver(&component_update_service_,
monitor.BindNewPipeAndPassRemote(), {component.id()});
// Should receive the first update.
SendUpdate(component, ComponentState::kDownloading, 0);
monitor.ExpectReceivedNormalizedUpdate(0, component.total_bytes());
// Shouldn't receive this update since it hasn't been 50ms since the last
// update.
SendUpdate(component, ComponentState::kDownloading, 15);
// Wait more than 50ms so we can receive the next event.
FastForwardBy(base::Milliseconds(51));
// Should receive the this since it's been over 50ms since the last update.
SendUpdate(component, ComponentState::kDownloading, 20);
monitor.ExpectReceivedNormalizedUpdate(20, component.total_bytes());
// Shouldn't receive this update since it hasn't been 50ms since the last
// update.
SendUpdate(component, ComponentState::kDownloading, 25);
}
TEST_F(AIModelDownloadProgressManagerTest, OnlyReceivesUpdatesForNewProgress) {
AIModelDownloadProgressManager manager;
AITestUtils::FakeMonitor monitor;
// Set its total to twice kNormalizedProgressMax so that there are two raw
// download progresses that map to every normalized download progress.
AITestUtils::FakeComponent component(
"component_id", AIUtils::kNormalizedDownloadProgressMax * 2);
manager.AddObserver(&component_update_service_,
monitor.BindNewPipeAndPassRemote(), {component.id()});
// Should receive the first update as zero.
SendUpdate(component, ComponentState::kDownloading, 0);
monitor.ExpectReceivedNormalizedUpdate(0, component.total_bytes());
// Wait more than 50ms so we can receive the next event.
FastForwardBy(base::Milliseconds(51));
// Should be able to receive this progress event since we haven't seen it
// before.
SendUpdate(component, ComponentState::kDownloading, 10);
monitor.ExpectReceivedNormalizedUpdate(10, component.total_bytes());
// Wait more than 50ms so we can receive the next event.
FastForwardBy(base::Milliseconds(51));
// Shouldn't be able to receive this progress event since we've just seen it.
SendUpdate(component, ComponentState::kDownloading, 10);
// Wait more than 50ms so we can receive the next event.
FastForwardBy(base::Milliseconds(51));
// Shouldn't be able to receive this progress event since it normalizes to a
// progress we've seen.
CHECK_EQ(
AIUtils::NormalizeModelDownloadProgress(10, component.total_bytes()),
AIUtils::NormalizeModelDownloadProgress(11, component.total_bytes()));
SendUpdate(component, ComponentState::kDownloading, 11);
FastForwardBy(base::Milliseconds(51));
}
TEST_F(AIModelDownloadProgressManagerTest, ShouldReceive100percent) {
AIModelDownloadProgressManager manager;
AITestUtils::FakeMonitor monitor;
AITestUtils::FakeComponent component("component_id", 100);
manager.AddObserver(&component_update_service_,
monitor.BindNewPipeAndPassRemote(), {component.id()});
// Should receive the first update.
SendUpdate(component, ComponentState::kDownloading, 10);
monitor.ExpectReceivedNormalizedUpdate(0, component.total_bytes());
// Should receive the second update since it's 100% even though 50ms haven't
// elapsed.
SendUpdate(component, ComponentState::kDownloading, component.total_bytes());
monitor.ExpectReceivedNormalizedUpdate(component.total_bytes(),
component.total_bytes());
// No other events should be fired.
FastForwardBy(base::Milliseconds(51));
}
TEST_F(AIModelDownloadProgressManagerTest,
AllComponentsMustBeObservedBeforeSendingEvents) {
AIModelDownloadProgressManager manager;
AITestUtils::FakeMonitor monitor;
AITestUtils::FakeComponent component1("component_id1", 100);
AITestUtils::FakeComponent component2("component_id2", 1000);
manager.AddObserver(&component_update_service_,
monitor.BindNewPipeAndPassRemote(),
{component1.id(), component2.id()});
// Shouldn't receive this updates since we haven't observed `component2` yet.
SendUpdate(component1, ComponentState::kDownloading, 0);
monitor.ExpectNoUpdate();
FastForwardBy(base::Milliseconds(51));
// Should receive this update since now we've seen both components.
SendUpdate(component2, ComponentState::kDownloading, 10);
uint64_t total_bytes = component1.total_bytes() + component2.total_bytes();
monitor.ExpectReceivedNormalizedUpdate(0, total_bytes);
}
TEST_F(AIModelDownloadProgressManagerTest,
ProgressIsNormalizedAgainstTheSumOfTheComponentsTotalBytes) {
AIModelDownloadProgressManager manager;
AITestUtils::FakeMonitor monitor;
AITestUtils::FakeComponent component1("component_id1", 100);
AITestUtils::FakeComponent component2("component_id2", 1000);
manager.AddObserver(&component_update_service_,
monitor.BindNewPipeAndPassRemote(),
{component1.id(), component2.id()});
// Trigger the first event by sending updates for components 1 and 2.
uint64_t component1_downloaded_bytes = 0;
SendUpdate(component1, ComponentState::kDownloading,
component1_downloaded_bytes);
uint64_t component2_downloaded_bytes = 0;
SendUpdate(component2, ComponentState::kDownloading,
component2_downloaded_bytes);
monitor.ExpectReceivedUpdate(0, AIUtils::kNormalizedDownloadProgressMax);
// Wait more than 50ms so we can receive the next event.
FastForwardBy(base::Milliseconds(51));
// Component 2 receives another 5 bytes.
component2_downloaded_bytes += 5;
SendUpdate(component2, ComponentState::kDownloading,
component2_downloaded_bytes);
// Should receive an update of the sum of component1 and component2's
// downloaded bytes normalized with the sum of their total_bytes
uint64_t downloaded_bytes =
component1_downloaded_bytes + component2_downloaded_bytes;
uint64_t total_bytes = component1.total_bytes() + component2.total_bytes();
uint64_t normalized_downloaded_bytes =
AIUtils::NormalizeModelDownloadProgress(downloaded_bytes, total_bytes);
monitor.ExpectReceivedUpdate(normalized_downloaded_bytes,
AIUtils::kNormalizedDownloadProgressMax);
}
TEST_F(AIModelDownloadProgressManagerTest,
AlreadyDownloadedBytesArentIncludedInProgressForMultipleComponents) {
AIModelDownloadProgressManager manager;
AITestUtils::FakeMonitor monitor;
AITestUtils::FakeComponent component1("component_id1", 100);
AITestUtils::FakeComponent component2("component_id2", 1000);
int64_t already_downloaded_bytes = 0;
manager.AddObserver(&component_update_service_,
monitor.BindNewPipeAndPassRemote(),
{component1.id(), component2.id()});
// Send an update for component 1.
uint64_t component1_downloaded_bytes = 5;
already_downloaded_bytes += 5;
SendUpdate(component1, ComponentState::kDownloading,
component1_downloaded_bytes);
// Send a second update for component 1. This increases the already downloaded
// bytes that shouldn't be included in the progress.
component1_downloaded_bytes += 5;
already_downloaded_bytes += 5;
SendUpdate(component1, ComponentState::kDownloading,
component1_downloaded_bytes);
// Send an update for component 2 triggering the zero event. This increases
// the already downloaded bytes that shouldn't be included in the progress.
uint64_t component2_downloaded_bytes = 10;
already_downloaded_bytes += 10;
SendUpdate(component2, ComponentState::kDownloading,
component2_downloaded_bytes);
monitor.ExpectReceivedUpdate(0, AIUtils::kNormalizedDownloadProgressMax);
// Wait more than 50ms so we can receive the next event.
FastForwardBy(base::Milliseconds(51));
// Component 2 receives another 5 bytes.
component2_downloaded_bytes += 5;
SendUpdate(component2, ComponentState::kDownloading,
component2_downloaded_bytes);
// The progress we receive shouldn't include the `already_downloaded_bytes`.
uint64_t downloaded_bytes =
component1_downloaded_bytes + component2_downloaded_bytes;
uint64_t total_bytes = component1.total_bytes() + component2.total_bytes();
uint64_t normalized_downloaded_bytes =
AIUtils::NormalizeModelDownloadProgress(
downloaded_bytes - already_downloaded_bytes,
total_bytes - already_downloaded_bytes);
monitor.ExpectReceivedUpdate(normalized_downloaded_bytes,
AIUtils::kNormalizedDownloadProgressMax);
}
class AIModelDownloadProgressManagerHasPreviousDownloadsTest
: public AIModelDownloadProgressManagerTest {
public:
AIModelDownloadProgressManagerHasPreviousDownloadsTest() = default;
~AIModelDownloadProgressManagerHasPreviousDownloadsTest() override = default;
private:
// Don't expect that GetComponentIDs will return an empty vector.
void SetUp() override {}
};
TEST_F(AIModelDownloadProgressManagerHasPreviousDownloadsTest,
AlreadyInstalledComponentsAreNotObserved) {
AIModelDownloadProgressManager manager;
AITestUtils::FakeMonitor monitor;
AITestUtils::FakeComponent component1("component_id1", 100);
AITestUtils::FakeComponent component2("component_id2", 1000);
EXPECT_CALL(component_update_service_, GetComponentDetails(_, _))
.WillOnce([&](const std::string& id, CrxUpdateItem* item) {
*item = component1.CreateUpdateItem(
update_client::ComponentState::kUpToDate, 0);
return true;
})
.WillOnce([&](const std::string& id, CrxUpdateItem* item) {
*item =
component2.CreateUpdateItem(update_client::ComponentState::kNew, 0);
return true;
});
manager.AddObserver(&component_update_service_,
monitor.BindNewPipeAndPassRemote(),
{component1.id(), component2.id()});
// Should receive this despite not observing component 1 yet since component1
// is already downloaded.
SendUpdate(component2, ComponentState::kDownloading, 0);
monitor.ExpectReceivedNormalizedUpdate(0, component2.total_bytes());
}
TEST_F(AIModelDownloadProgressManagerHasPreviousDownloadsTest,
ProgressIsNormalizedAgainstOnlyUninstalledComponents) {
AIModelDownloadProgressManager manager;
AITestUtils::FakeMonitor monitor;
AITestUtils::FakeComponent component1("component_id1", 100);
AITestUtils::FakeComponent component2("component_id2", 1000);
AITestUtils::FakeComponent component3("component_id3", 500);
EXPECT_CALL(component_update_service_, GetComponentDetails(_, _))
.WillOnce([&](const std::string& id, CrxUpdateItem* item) {
*item = component1.CreateUpdateItem(
update_client::ComponentState::kUpToDate, 0);
return true;
})
.WillOnce([&](const std::string& id, CrxUpdateItem* item) {
*item =
component2.CreateUpdateItem(update_client::ComponentState::kNew, 0);
return true;
})
.WillOnce([&](const std::string& id, CrxUpdateItem* item) {
*item =
component3.CreateUpdateItem(update_client::ComponentState::kNew, 0);
return true;
});
manager.AddObserver(&component_update_service_,
monitor.BindNewPipeAndPassRemote(),
{component1.id(), component2.id(), component3.id()});
// Fire the zero progress event by sending events for component 2 and 3.
SendUpdate(component2, ComponentState::kDownloading, 0);
SendUpdate(component3, ComponentState::kDownloading, 0);
monitor.ExpectReceivedUpdate(0, AIUtils::kNormalizedDownloadProgressMax);
// Wait more than 50ms so we can receive the next event.
FastForwardBy(base::Milliseconds(51));
// Progress should be normalized against only components 2 and 3 since 1 is
// already installed.
SendUpdate(component2, ComponentState::kDownloading, 10);
uint64_t total_bytes = component2.total_bytes() + component3.total_bytes();
monitor.ExpectReceivedNormalizedUpdate(10, total_bytes);
}
TEST_F(AIModelDownloadProgressManagerHasPreviousDownloadsTest,
ReceiveZeroAndHundredPercentWhenEverythingIsInstalled) {
AIModelDownloadProgressManager manager;
AITestUtils::FakeMonitor monitor;
AITestUtils::FakeComponent component1("component_id1", 100);
AITestUtils::FakeComponent component2("component_id2", 1000);
EXPECT_CALL(component_update_service_, GetComponentDetails(_, _))
.WillOnce([&](const std::string& id, CrxUpdateItem* item) {
*item = component1.CreateUpdateItem(
update_client::ComponentState::kUpToDate, 0);
return true;
})
.WillOnce([&](const std::string& id, CrxUpdateItem* item) {
*item = component2.CreateUpdateItem(
update_client::ComponentState::kUpToDate, 0);
return true;
});
manager.AddObserver(&component_update_service_,
monitor.BindNewPipeAndPassRemote(),
{component1.id(), component2.id()});
monitor.ExpectReceivedUpdate(0, AIUtils::kNormalizedDownloadProgressMax);
monitor.ExpectReceivedUpdate(AIUtils::kNormalizedDownloadProgressMax,
AIUtils::kNormalizedDownloadProgressMax);
}
TEST_F(AIModelDownloadProgressManagerHasPreviousDownloadsTest,
ObservesComponentsMidDownload) {
AIModelDownloadProgressManager manager;
AITestUtils::FakeMonitor monitor1;
AITestUtils::FakeMonitor monitor2;
AITestUtils::FakeComponent component("component_id1", 100);
// First, `monitor1` observes `component`.
{
EXPECT_CALL(component_update_service_, GetComponentDetails(_, _))
.WillOnce([&](const std::string& id, CrxUpdateItem* item) {
*item = component.CreateUpdateItem(
update_client::ComponentState::kNew, 0);
return true;
});
manager.AddObserver(&component_update_service_,
monitor1.BindNewPipeAndPassRemote(), {component.id()});
}
// Only `monitor1` will receive this update since `monitor2` is not observing.
SendUpdate(component, ComponentState::kDownloading, 0);
monitor1.ExpectReceivedNormalizedUpdate(0, component.total_bytes());
monitor2.ExpectNoUpdate();
// Now both `monitor1` and `monitor2` are observing `component`.
{
EXPECT_CALL(component_update_service_, GetComponentDetails(_, _))
.WillOnce([&](const std::string& id, CrxUpdateItem* item) {
*item = component.CreateUpdateItem(
update_client::ComponentState::kDownloading, 0);
return true;
});
manager.AddObserver(&component_update_service_,
monitor2.BindNewPipeAndPassRemote(), {component.id()});
}
// Send the first update to for `monitor2` waiting more than 50ms so that both
// monitors receive it.
constexpr int64_t update1_for_monitor2 = 60;
FastForwardBy(base::Milliseconds(51));
SendUpdate(component, ComponentState::kDownloading, update1_for_monitor2);
{
base::RunLoop run_loop;
base::RepeatingClosure update_callback =
base::BarrierClosure(2, run_loop.QuitClosure());
// `monitor1` should still be normalized against the total bytes of the
// component.
monitor1.ExpectReceivedNormalizedUpdate(
update1_for_monitor2, component.total_bytes(), update_callback);
// This is `monitor2`'s first update so it should receive zero and be
// normalized against the remaining bytes.
monitor2.ExpectReceivedNormalizedUpdate(
0, component.total_bytes() - update1_for_monitor2, update_callback);
run_loop.Run();
}
// Send a second update to for `monitor2` waiting more than 50ms so that both
// monitors receive it.
constexpr int64_t update2_for_monitor2 = 75;
FastForwardBy(base::Milliseconds(51));
SendUpdate(component, ComponentState::kDownloading, update2_for_monitor2);
{
base::RunLoop run_loop;
base::RepeatingClosure update_callback =
base::BarrierClosure(2, run_loop.QuitClosure());
// `monitor1` should still be normalized against the total bytes of the
// component.
monitor1.ExpectReceivedNormalizedUpdate(
update2_for_monitor2, component.total_bytes(), update_callback);
// `monitor2` should still be normalized against the remaining bytes it
// observed on its first update. The downloaded bytes should also not
// include any bytes that were downloaded before `monitor2` started
// observing.
monitor2.ExpectReceivedNormalizedUpdate(
update2_for_monitor2 - update1_for_monitor2,
component.total_bytes() - update1_for_monitor2, update_callback);
run_loop.Run();
}
}
} // namespace on_device_ai
|