141 строка
2.7 KiB
C#
141 строка
2.7 KiB
C#
using System;
|
|
using System.Diagnostics;
|
|
using NUnit.Framework;
|
|
using Xamarin.Forms.Controls;
|
|
using Xamarin.UITest;
|
|
using Xamarin.UITest.Queries;
|
|
|
|
namespace Xamarin.Forms.Core.UITests
|
|
{
|
|
internal abstract class BaseTestFixture
|
|
{
|
|
// TODO: Landscape tests
|
|
|
|
public static IApp App { get; set; }
|
|
|
|
public string PlatformViewType { get; protected set; }
|
|
|
|
public static AppRect ScreenBounds { get; set; }
|
|
|
|
[TestFixtureTearDown]
|
|
protected virtual void FixtureTeardown()
|
|
{
|
|
}
|
|
|
|
static int s_testsrun;
|
|
const int ConsecutiveTestLimit = 10;
|
|
|
|
// Until we get more of our memory leak issues worked out, restart the app
|
|
// after a specified number of tests so we don't get bogged down in GC
|
|
// (or booted by jetsam)
|
|
public void EnsureMemory()
|
|
{
|
|
s_testsrun += 1;
|
|
|
|
if (s_testsrun >= ConsecutiveTestLimit)
|
|
{
|
|
s_testsrun = 0;
|
|
|
|
CoreUITestsSetup.LaunchApp();
|
|
|
|
FixtureSetup();
|
|
}
|
|
}
|
|
|
|
[SetUp]
|
|
protected virtual void TestSetup()
|
|
{
|
|
EnsureMemory();
|
|
}
|
|
|
|
[TearDown]
|
|
protected virtual void TestTearDown()
|
|
{
|
|
}
|
|
|
|
protected abstract void NavigateToGallery();
|
|
|
|
#pragma warning disable 618
|
|
[TestFixtureSetUp]
|
|
#pragma warning restore 618
|
|
protected virtual void FixtureSetup()
|
|
{
|
|
ResetApp();
|
|
|
|
int maxAttempts = 2;
|
|
int attempts = 0;
|
|
|
|
while (attempts < maxAttempts)
|
|
{
|
|
attempts += 1;
|
|
try
|
|
{
|
|
NavigateToGallery();
|
|
return;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
var debugMessage = $"NavigateToGallery failed: {ex}";
|
|
|
|
Debug.WriteLine(debugMessage);
|
|
Console.WriteLine(debugMessage);
|
|
|
|
if (attempts < maxAttempts)
|
|
{
|
|
// Something has failed and we're stuck in a place where we can't navigate
|
|
// to the test. Usually this is because we're getting network/HTTP errors
|
|
// communicating with the server on the device. So we'll try restarting the app.
|
|
CoreUITestsSetup.LaunchApp();
|
|
}
|
|
else
|
|
{
|
|
// But if it's still not working after [maxAttempts], we've got assume this is a legit
|
|
// problem that restarting won't fix
|
|
throw;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
protected void ResetApp()
|
|
{
|
|
#if __IOS__
|
|
App.Invoke("reset:", string.Empty);
|
|
#endif
|
|
#if __ANDROID__
|
|
App.Invoke("Reset");
|
|
#endif
|
|
#if __WINDOWS__
|
|
WindowsTestBase.Reset();
|
|
#endif
|
|
}
|
|
}
|
|
}
|
|
|
|
#if UITEST
|
|
|
|
namespace Xamarin.Forms.Core.UITests
|
|
{
|
|
using NUnit.Framework;
|
|
|
|
[SetUpFixture]
|
|
public class CoreUITestsSetup
|
|
{
|
|
[SetUp]
|
|
public void RunBeforeAnyTests()
|
|
{
|
|
LaunchApp();
|
|
}
|
|
|
|
public static void LaunchApp()
|
|
{
|
|
BaseTestFixture.App = null;
|
|
BaseTestFixture.App = AppSetup.Setup();
|
|
|
|
BaseTestFixture.App.SetOrientationPortrait();
|
|
BaseTestFixture.ScreenBounds = BaseTestFixture.App.RootViewRect();
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif |