@@ -455,7 +455,9 @@ public void TestAndroidStoreKey (bool useApkSigner, bool isRelease, string packa
455
455
456
456
// https://xamarin.github.io/bugzilla-archives/31/31705/bug.html
457
457
[ Test ]
458
- public void LocalizedAssemblies_ShouldBeFastDeployed ( )
458
+ [ TestCase ( "apk" ) ]
459
+ [ TestCase ( "aab" ) ]
460
+ public void LocalizedAssemblies_ShouldBeFastDeployed ( string packageFormat )
459
461
{
460
462
AssertCommercialBuild ( ) ;
461
463
@@ -469,6 +471,7 @@ public void LocalizedAssemblies_ShouldBeFastDeployed ()
469
471
EmbedAssembliesIntoApk = false ,
470
472
} ;
471
473
InlineData . AddCultureResourcesToProject ( app , "Foo" , "CancelButton" ) ;
474
+ app . SetProperty ( "AndroidPackageFormat" , packageFormat ) ;
472
475
app . References . Add ( new BuildItem . ProjectReference ( $ "..\\ { lib . ProjectName } \\ { lib . ProjectName } .csproj", lib . ProjectName , lib . ProjectGuid ) ) ;
473
476
474
477
using ( var libBuilder = CreateDllBuilder ( Path . Combine ( path , lib . ProjectName ) ) )
@@ -494,12 +497,14 @@ public void LocalizedAssemblies_ShouldBeFastDeployed ()
494
497
}
495
498
496
499
[ Test ]
497
- public void IncrementalFastDeployment ( )
500
+ [ TestCase ( "apk" ) ]
501
+ [ TestCase ( "aab" ) ]
502
+ public void IncrementalFastDeployment ( string packageFormat )
498
503
{
499
504
AssertCommercialBuild ( ) ;
500
505
501
506
var class1src = new BuildItem . Source ( "Class1.cs" ) {
502
- TextContent = ( ) => "namespace Library1 { public class Class1 { public static int foo = 0 ; } }"
507
+ TextContent = ( ) => "namespace Library1 { public class Class1 { public static int foo = 500 ; } }"
503
508
} ;
504
509
var lib1 = new XamarinAndroidLibraryProject ( ) {
505
510
ProjectName = "Library1" ,
@@ -509,7 +514,7 @@ public void IncrementalFastDeployment ()
509
514
} ;
510
515
511
516
var class2src = new BuildItem . Source ( "Class2.cs" ) {
512
- TextContent = ( ) => "namespace Library2 { public class Class2 { public static int foo = 0 ; } }"
517
+ TextContent = ( ) => "namespace Library2 { public class Class2 { public static int foo = 40 ; } }"
513
518
} ;
514
519
var lib2 = new DotNetStandard {
515
520
ProjectName = "Library2" ,
@@ -527,16 +532,21 @@ public void IncrementalFastDeployment ()
527
532
new BuildItem ( "ProjectReference" , "..\\ Library2\\ Library2.csproj" ) ,
528
533
} ,
529
534
} ;
535
+ app . SetProperty ( "AndroidPackageFormat" , packageFormat ) ;
530
536
531
537
// Set up library projects
532
538
var rootPath = Path . Combine ( Root , "temp" , TestName ) ;
533
- using ( var lb1 = CreateDllBuilder ( Path . Combine ( rootPath , lib1 . ProjectName ) ) )
539
+ using ( var lb1 = CreateDllBuilder ( Path . Combine ( rootPath , lib1 . ProjectName ) ) ) {
540
+ lb1 . BuildLogFile = "build.log" ;
534
541
Assert . IsTrue ( lb1 . Build ( lib1 ) , "First library build should have succeeded." ) ;
535
- using ( var lb2 = CreateDllBuilder ( Path . Combine ( rootPath , lib2 . ProjectName ) ) )
542
+ }
543
+ using ( var lb2 = CreateDllBuilder ( Path . Combine ( rootPath , lib2 . ProjectName ) ) ) {
544
+ lb2 . BuildLogFile = "build.log" ;
536
545
Assert . IsTrue ( lb2 . Build ( lib2 ) , "Second library build should have succeeded." ) ;
546
+ }
537
547
538
548
long lib1FirstBuildSize = new FileInfo ( Path . Combine ( rootPath , lib1 . ProjectName , lib1 . OutputPath , "Library1.dll" ) ) . Length ;
539
-
549
+
540
550
using ( var builder = CreateApkBuilder ( Path . Combine ( rootPath , app . ProjectName ) ) ) {
541
551
builder . Verbosity = LoggerVerbosity . Detailed ;
542
552
builder . ThrowOnBuildFailure = false ;
@@ -560,13 +570,15 @@ public void IncrementalFastDeployment ()
560
570
File . SetLastWriteTimeUtc ( file , DateTime . UtcNow ) ;
561
571
}
562
572
563
- class1src . TextContent = ( ) => "namespace Library1 { public class Class1 { public static int foo = 100 ; } }" ;
573
+ class1src . TextContent = ( ) => "namespace Library1 { public class Class1 { public static int foo = 1 ; } }" ;
564
574
class1src . Timestamp = DateTime . UtcNow . AddSeconds ( 1 ) ;
565
- using ( var lb1 = CreateDllBuilder ( Path . Combine ( rootPath , lib1 . ProjectName ) ) )
575
+ using ( var lb1 = CreateDllBuilder ( Path . Combine ( rootPath , lib1 . ProjectName ) ) ) {
576
+ lb1 . BuildLogFile = "build2.log" ;
566
577
Assert . IsTrue ( lb1 . Build ( lib1 ) , "Second library build should have succeeded." ) ;
578
+ }
567
579
568
580
long lib1SecondBuildSize = new FileInfo ( Path . Combine ( rootPath , lib1 . ProjectName , lib1 . OutputPath , "Library1.dll" ) ) . Length ;
569
- Assert . AreEqual ( lib1FirstBuildSize , lib1SecondBuildSize , "Library2 .dll was not the same size." ) ;
581
+ Assert . AreEqual ( lib1FirstBuildSize , lib1SecondBuildSize , "Library1 .dll was not the same size." ) ;
570
582
571
583
builder . BuildLogFile = "install3.log" ;
572
584
Assert . IsTrue ( builder . Install ( app , doNotCleanupOnUpdate : true , saveProject : false ) , "Third install should have succeeded." ) ;
0 commit comments