Skip to content

Commit

Permalink
fix tests and shit
Browse files Browse the repository at this point in the history
  • Loading branch information
MiniDigger committed Feb 9, 2022
1 parent 7c559f7 commit 1ff0ce6
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 15 deletions.
@@ -1,24 +1,50 @@
/*
* This file is part of adventure, licensed under the MIT License.
*
* Copyright (c) 2017-2022 KyoriPowered
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package net.kyori.adventure.text.minimessage.transformation.inbuild;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.Locale;
import java.util.Objects;
import java.util.stream.Stream;
import net.kyori.adventure.text.Component;
import net.kyori.adventure.text.format.NamedTextColor;
import net.kyori.adventure.text.format.TextColor;
import net.kyori.adventure.text.minimessage.parser.ParsingException;
import net.kyori.adventure.text.minimessage.parser.node.TagPart;
import net.kyori.adventure.text.minimessage.transformation.Transformation;
import net.kyori.examination.ExaminableProperty;

import org.jetbrains.annotations.NotNull;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.Locale;
import java.util.Objects;
import java.util.stream.Stream;

public class TransitionTransformation extends Transformation {
/**
* A transformation that changes the color based on a phase param.
*
* @since 4.10.0
*/
public final class TransitionTransformation extends Transformation {
public static final String TRANSITION = "transition";

private final TextColor[] colors;
Expand Down
Expand Up @@ -23,8 +23,6 @@
*/
package net.kyori.adventure.text.minimessage;

import java.util.HashMap;
import java.util.Map;
import java.util.UUID;
import net.kyori.adventure.key.Key;
import net.kyori.adventure.text.Component;
Expand Down Expand Up @@ -1689,9 +1687,9 @@ void testNestedGradientsDontOverrideColors() {

@Test
void testTransition() {
final TextColor[] colors = new TextColor[] { BLACK, color(0), WHITE, color(0), BLACK};
final float[] phases = new float[] { -1, 0.5f, 0, 1.5f, 1};
for (int i = 0; i <colors.length; i++) {
final TextColor[] colors = new TextColor[] {BLACK, color(0x808080), WHITE, color(0x808080), BLACK};
final float[] phases = new float[] {-1, 0.5f, 0, 0.5f, 1};
for (int i = 0; i < colors.length; i++) {
final String input = "<transition:white:black:" + phases[i] + ">Hello World";
final Component expected = Component.text("", colors[i]).append(text("Hello World"));
this.assertParsedEquals(expected, input);
Expand Down

0 comments on commit 1ff0ce6

Please sign in to comment.