This is an automated email from the ASF dual-hosted git repository. chaokunyang pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/fory.git
The following commit(s) were added to refs/heads/main by this push: new 47596bc2 chore(Scala): add test for Scala 3 enum (#2386) 47596bc2 is described below commit 47596bc2eac870e299089c0db762db0f1223ace8 Author: PJ Fanning <pjfann...@users.noreply.github.com> AuthorDate: Sun Jul 6 09:45:47 2025 +0100 chore(Scala): add test for Scala 3 enum (#2386) basic unit test for a Scala 3 enum --- .../fory/serializer/scala/ScalaEnumTest.scala | 53 ++++++++++++++++++++++ 1 file changed, 53 insertions(+) diff --git a/scala/src/test/scala-3/org/apache/fory/serializer/scala/ScalaEnumTest.scala b/scala/src/test/scala-3/org/apache/fory/serializer/scala/ScalaEnumTest.scala new file mode 100644 index 00000000..6bd69f67 --- /dev/null +++ b/scala/src/test/scala-3/org/apache/fory/serializer/scala/ScalaEnumTest.scala @@ -0,0 +1,53 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +package org.apache.fory.serializer.scala + +import org.apache.fory.Fory +import org.apache.fory.config.Language +import org.scalatest.matchers.should.Matchers +import org.scalatest.wordspec.AnyWordSpec + +object ScalaEnumTest { + enum ColorEnum { case Red, Green, Blue } + + case class Colors(set: Set[ColorEnum]) +} + +class ScalaEnumTest extends AnyWordSpec with Matchers { + import ScalaEnumTest._ + + val fory: Fory = Fory.builder() + .withLanguage(Language.JAVA) + .withRefTracking(true) + .withScalaOptimizationEnabled(true) + .requireClassRegistration(false).build() + + "fory scala enum support" should { + "serialize/deserialize ColorEnum" in { + val bytes = fory.serialize(ColorEnum.Green) + fory.deserialize(bytes) shouldBe ColorEnum.Green + } + "serialize/deserialize Colors" in { + val colors = Colors(Set(ColorEnum.Green, ColorEnum.Red)) + val bytes = fory.serialize(colors) + fory.deserialize(bytes) shouldEqual colors + } + } +} --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@fory.apache.org For additional commands, e-mail: commits-h...@fory.apache.org