2022-07-21 17:15:21 +08:00
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System.Linq ;
using NUnit.Framework ;
using osu.Framework.Allocation ;
using osu.Framework.Bindables ;
using osu.Framework.Extensions ;
using osu.Framework.Testing ;
using osu.Game.Beatmaps ;
2023-07-26 15:22:21 +08:00
using osu.Game.Rulesets ;
using osu.Game.Scoring ;
using osu.Game.Scoring.Legacy ;
2022-07-21 17:15:21 +08:00
using osu.Game.Screens.Play ;
using osu.Game.Tests.Beatmaps.IO ;
using osu.Game.Tests.Visual ;
namespace osu.Game.Tests.Database
{
[HeadlessTest]
2023-07-26 15:07:45 +08:00
public partial class BackgroundDataStoreProcessorTests : OsuTestScene , ILocalUserPlayInfo
2022-07-21 17:15:21 +08:00
{
public IBindable < bool > IsPlaying = > isPlaying ;
private readonly Bindable < bool > isPlaying = new Bindable < bool > ( ) ;
private BeatmapSetInfo importedSet = null ! ;
[BackgroundDependencyLoader]
private void load ( OsuGameBase osu )
{
importedSet = BeatmapImportHelper . LoadQuickOszIntoOsu ( osu ) . GetResultSafely ( ) ;
}
[SetUpSteps]
public void SetUpSteps ( )
{
AddStep ( "Set not playing" , ( ) = > isPlaying . Value = false ) ;
}
[Test]
public void TestDifficultyProcessing ( )
{
AddAssert ( "Difficulty is initially set" , ( ) = >
{
return Realm . Run ( r = >
{
2023-07-06 12:37:42 +08:00
var beatmapSetInfo = r . Find < BeatmapSetInfo > ( importedSet . ID ) ! ;
2022-07-21 17:15:21 +08:00
return beatmapSetInfo . Beatmaps . All ( b = > b . StarRating > 0 ) ;
} ) ;
} ) ;
AddStep ( "Reset difficulty" , ( ) = >
{
Realm . Write ( r = >
{
2023-07-06 12:37:42 +08:00
var beatmapSetInfo = r . Find < BeatmapSetInfo > ( importedSet . ID ) ! ;
2022-07-21 17:15:21 +08:00
foreach ( var b in beatmapSetInfo . Beatmaps )
b . StarRating = - 1 ;
} ) ;
} ) ;
AddStep ( "Run background processor" , ( ) = >
{
2023-07-26 15:07:45 +08:00
Add ( new TestBackgroundDataStoreProcessor ( ) ) ;
2022-07-21 17:15:21 +08:00
} ) ;
AddUntilStep ( "wait for difficulties repopulated" , ( ) = >
{
return Realm . Run ( r = >
{
2023-07-06 12:37:42 +08:00
var beatmapSetInfo = r . Find < BeatmapSetInfo > ( importedSet . ID ) ! ;
2022-07-21 17:15:21 +08:00
return beatmapSetInfo . Beatmaps . All ( b = > b . StarRating > 0 ) ;
} ) ;
} ) ;
}
[Test]
public void TestDifficultyProcessingWhilePlaying ( )
{
AddAssert ( "Difficulty is initially set" , ( ) = >
{
return Realm . Run ( r = >
{
2023-07-06 12:37:42 +08:00
var beatmapSetInfo = r . Find < BeatmapSetInfo > ( importedSet . ID ) ! ;
2022-07-21 17:15:21 +08:00
return beatmapSetInfo . Beatmaps . All ( b = > b . StarRating > 0 ) ;
} ) ;
} ) ;
AddStep ( "Set playing" , ( ) = > isPlaying . Value = true ) ;
AddStep ( "Reset difficulty" , ( ) = >
{
Realm . Write ( r = >
{
2023-07-06 12:37:42 +08:00
var beatmapSetInfo = r . Find < BeatmapSetInfo > ( importedSet . ID ) ! ;
2022-07-21 17:15:21 +08:00
foreach ( var b in beatmapSetInfo . Beatmaps )
b . StarRating = - 1 ;
} ) ;
} ) ;
AddStep ( "Run background processor" , ( ) = >
{
2023-07-26 15:07:45 +08:00
Add ( new TestBackgroundDataStoreProcessor ( ) ) ;
2022-07-21 17:15:21 +08:00
} ) ;
AddWaitStep ( "wait some" , 500 ) ;
AddAssert ( "Difficulty still not populated" , ( ) = >
{
return Realm . Run ( r = >
{
2023-07-06 12:37:42 +08:00
var beatmapSetInfo = r . Find < BeatmapSetInfo > ( importedSet . ID ) ! ;
2022-07-21 17:15:21 +08:00
return beatmapSetInfo . Beatmaps . All ( b = > b . StarRating = = - 1 ) ;
} ) ;
} ) ;
AddStep ( "Set not playing" , ( ) = > isPlaying . Value = false ) ;
AddUntilStep ( "wait for difficulties repopulated" , ( ) = >
{
return Realm . Run ( r = >
{
2023-07-06 12:37:42 +08:00
var beatmapSetInfo = r . Find < BeatmapSetInfo > ( importedSet . ID ) ! ;
2022-07-21 17:15:21 +08:00
return beatmapSetInfo . Beatmaps . All ( b = > b . StarRating > 0 ) ;
} ) ;
} ) ;
}
2023-07-26 15:28:38 +08:00
[Test]
public void TestScoreUpgradeSuccess ( )
{
ScoreInfo scoreInfo = null ! ;
2023-08-21 18:35:04 +08:00
AddStep ( "Add score which requires upgrade (and has beatmap)" , ( ) = >
2023-07-26 15:28:38 +08:00
{
Realm . Write ( r = >
{
r . Add ( scoreInfo = new ScoreInfo ( ruleset : r . All < RulesetInfo > ( ) . First ( ) , beatmap : r . All < BeatmapInfo > ( ) . First ( ) )
{
TotalScoreVersion = 30000002 ,
LegacyTotalScore = 123456 ,
IsLegacyScore = true ,
} ) ;
} ) ;
} ) ;
AddStep ( "Run background processor" , ( ) = > Add ( new TestBackgroundDataStoreProcessor ( ) ) ) ;
AddUntilStep ( "Score version upgraded" , ( ) = > Realm . Run ( r = > r . Find < ScoreInfo > ( scoreInfo . ID ) ! . TotalScoreVersion ) , ( ) = > Is . EqualTo ( LegacyScoreEncoder . LATEST_VERSION ) ) ;
AddAssert ( "Score not marked as failed" , ( ) = > Realm . Run ( r = > r . Find < ScoreInfo > ( scoreInfo . ID ) ! . TotalScoreUpgradeFailed ) , ( ) = > Is . False ) ;
}
2023-07-26 15:22:21 +08:00
[Test]
public void TestScoreUpgradeFailed ( )
{
ScoreInfo scoreInfo = null ! ;
AddStep ( "Add score which requires upgrade (but has no beatmap)" , ( ) = >
{
Realm . Write ( r = >
{
r . Add ( scoreInfo = new ScoreInfo ( ruleset : r . All < RulesetInfo > ( ) . First ( ) , beatmap : new BeatmapInfo
{
BeatmapSet = new BeatmapSetInfo ( ) ,
Ruleset = r . All < RulesetInfo > ( ) . First ( ) ,
} )
{
TotalScoreVersion = 30000002 ,
IsLegacyScore = true ,
} ) ;
} ) ;
} ) ;
AddStep ( "Run background processor" , ( ) = > Add ( new TestBackgroundDataStoreProcessor ( ) ) ) ;
2023-07-26 15:28:38 +08:00
AddUntilStep ( "Score marked as failed" , ( ) = > Realm . Run ( r = > r . Find < ScoreInfo > ( scoreInfo . ID ) ! . TotalScoreUpgradeFailed ) , ( ) = > Is . True ) ;
AddAssert ( "Score version not upgraded" , ( ) = > Realm . Run ( r = > r . Find < ScoreInfo > ( scoreInfo . ID ) ! . TotalScoreVersion ) , ( ) = > Is . EqualTo ( 30000002 ) ) ;
2023-07-26 15:22:21 +08:00
}
2023-07-26 15:07:45 +08:00
public partial class TestBackgroundDataStoreProcessor : BackgroundDataStoreProcessor
2022-07-21 17:15:21 +08:00
{
protected override int TimeToSleepDuringGameplay = > 10 ;
}
}
}