2020-09-24 17:24:05 +09: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.
2020-09-24 22:25:04 +09:00
using System ;
2020-09-24 22:00:13 +09:00
using System.IO ;
using System.Linq ;
2020-09-24 17:24:05 +09:00
using NUnit.Framework ;
2020-10-04 23:57:35 +09:00
using osu.Framework.Allocation ;
using osu.Framework.Screens ;
2020-09-24 22:00:13 +09:00
using osu.Framework.Testing ;
2020-09-24 17:24:05 +09:00
using osu.Game.Beatmaps ;
using osu.Game.Rulesets ;
using osu.Game.Rulesets.Osu ;
2021-09-12 15:50:41 +02:00
using osu.Game.Screens.Edit ;
2020-09-24 22:00:13 +09:00
using osu.Game.Screens.Edit.Setup ;
2022-01-25 15:25:28 +03:00
using osu.Game.Storyboards ;
2020-09-24 22:00:13 +09:00
using osu.Game.Tests.Resources ;
using SharpCompress.Archives ;
using SharpCompress.Archives.Zip ;
2020-09-24 17:24:05 +09:00
namespace osu.Game.Tests.Visual.Editing
{
public class TestSceneEditorBeatmapCreation : EditorTestScene
{
protected override Ruleset CreateEditorRuleset ( ) = > new OsuRuleset ( ) ;
2020-09-25 12:24:41 +09:00
protected override bool EditorComponentsReady = > Editor . ChildrenOfType < SetupScreen > ( ) . SingleOrDefault ( ) ? . IsLoaded = = true ;
2020-09-24 22:00:13 +09:00
2021-05-28 14:33:06 +09:00
protected override bool IsolateSavingFromDatabase = > false ;
2020-10-04 23:57:35 +09:00
[Resolved]
private BeatmapManager beatmapManager { get ; set ; }
2020-09-24 22:25:04 +09:00
public override void SetUpSteps ( )
{
base . SetUpSteps ( ) ;
2020-09-24 17:24:05 +09:00
2020-09-25 12:25:50 +09:00
// if we save a beatmap with a hash collision, things fall over.
// probably needs a more solid resolution in the future but this will do for now.
AddStep ( "make new beatmap unique" , ( ) = > EditorBeatmap . Metadata . Title = Guid . NewGuid ( ) . ToString ( ) ) ;
2020-09-25 18:40:20 +09:00
}
2020-09-25 12:25:50 +09:00
2022-01-25 15:25:28 +03:00
protected override WorkingBeatmap CreateWorkingBeatmap ( IBeatmap beatmap , Storyboard storyboard = null ) = > new DummyWorkingBeatmap ( Audio , null ) ;
2021-05-31 14:24:46 +09:00
2020-09-25 18:40:20 +09:00
[Test]
public void TestCreateNewBeatmap ( )
{
2020-09-24 17:24:05 +09:00
AddStep ( "save beatmap" , ( ) = > Editor . Save ( ) ) ;
2021-12-17 18:26:12 +09:00
AddAssert ( "new beatmap in database" , ( ) = > beatmapManager . QueryBeatmapSet ( s = > s . ID = = EditorBeatmap . BeatmapInfo . BeatmapSet . ID ) ? . Value . DeletePending = = false ) ;
2020-10-04 23:57:35 +09:00
}
[Test]
public void TestExitWithoutSave ( )
{
2021-09-12 15:50:41 +02:00
EditorBeatmap editorBeatmap = null ;
AddStep ( "store editor beatmap" , ( ) = > editorBeatmap = EditorBeatmap ) ;
2021-06-22 19:30:52 -07:00
AddStep ( "exit without save" , ( ) = >
{
Editor . Exit ( ) ;
DialogOverlay . CurrentDialog . PerformOkAction ( ) ;
} ) ;
2020-10-04 23:57:35 +09:00
AddUntilStep ( "wait for exit" , ( ) = > ! Editor . IsCurrentScreen ( ) ) ;
2021-12-17 18:26:12 +09:00
AddAssert ( "new beatmap not persisted" , ( ) = > beatmapManager . QueryBeatmapSet ( s = > s . ID = = editorBeatmap . BeatmapInfo . BeatmapSet . ID ) ? . Value . DeletePending = = true ) ;
2020-09-24 17:24:05 +09:00
}
2020-09-24 22:00:13 +09:00
[Test]
public void TestAddAudioTrack ( )
{
AddAssert ( "switch track to real track" , ( ) = >
{
var setup = Editor . ChildrenOfType < SetupScreen > ( ) . First ( ) ;
2021-10-27 13:04:41 +09:00
string temp = TestResources . GetTestBeatmapForImport ( ) ;
2020-09-24 22:00:13 +09:00
string extractedFolder = $"{temp}_extracted" ;
Directory . CreateDirectory ( extractedFolder ) ;
using ( var zip = ZipArchive . Open ( temp ) )
zip . WriteToDirectory ( extractedFolder ) ;
2020-10-06 15:17:15 +09:00
bool success = setup . ChildrenOfType < ResourcesSection > ( ) . First ( ) . ChangeAudioTrack ( Path . Combine ( extractedFolder , "03. Renatus - Soleily 192kbps.mp3" ) ) ;
2020-09-24 22:00:13 +09:00
File . Delete ( temp ) ;
Directory . Delete ( extractedFolder , true ) ;
return success ;
} ) ;
AddAssert ( "track length changed" , ( ) = > Beatmap . Value . Track . Length > 60000 ) ;
}
2020-09-24 17:24:05 +09:00
}
}