EqualsAndHashCodeTest.scala 4.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/*
 * Copyright (c) 2021 jxnu-liguobin && contributors
 *
 * 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.
 */

梦境迷离's avatar
梦境迷离 已提交
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
package io.github.dreamylost

import org.scalatest.flatspec.AnyFlatSpec
import org.scalatest.matchers.should.Matchers

/**
 *
 * @author 梦境迷离
 * @since 2021/7/18
 * @version 1.0
 */
class EqualsAndHashCodeTest extends AnyFlatSpec with Matchers {

  @equalsAndHashCode(verbose = true)
  @toString
  class Employee(name: String, age: Int, var role: String) extends Person(name, age)

  @toString
  @equalsAndHashCode(verbose = true)
  class Person(var name: String, var age: Int)

  "equals1" should "ok" in {
    // these first two instances should be equal
    val nimoy = new Person("Leonard Nimoy", 82)
    val nimoy2 = new Person("Leonard Nimoy", 82)
    val shatner = new Person("William Shatner", 82)
    val stewart = new Person("Patrick Stewart", 47)

    println(nimoy)
    println(nimoy.hashCode())

    // all tests pass
    assert(nimoy != null)

56 57 58 59 60
    // canEqual
    assert(nimoy.canEqual(nimoy))
    assert(nimoy.canEqual(nimoy2))
    assert(nimoy2.canEqual(nimoy))

梦境迷离's avatar
梦境迷离 已提交
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
    // these should be equal
    assert(nimoy == nimoy)
    assert(nimoy == nimoy2)
    assert(nimoy2 == nimoy)

    // these should not be equal
    assert(nimoy != shatner)
    assert(shatner != nimoy)
    assert(nimoy != "Leonard Nimoy")
    assert(nimoy != stewart)
  }

  "equals2" should "ok" in {
    // these first two instance should be equal
    val eNimoy1 = new Employee("Leonard Nimoy", 82, "Actor")
    val eNimoy2 = new Employee("Leonard Nimoy", 82, "Actor")
    val pNimoy = new Person("Leonard Nimoy", 82)
    val eShatner = new Employee("William Shatner", 82, "Actor")

80 81 82 83 84
    // canEqual
    assert(eNimoy1.canEqual(eNimoy1))
    assert(eNimoy1.canEqual(eNimoy2))
    assert(eNimoy2.canEqual(eNimoy1))

梦境迷离's avatar
梦境迷离 已提交
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
    // equality tests
    assert(eNimoy1 == eNimoy1)
    assert(eNimoy1 == eNimoy2)
    assert(eNimoy2 == eNimoy1)

    // non-equality tests
    assert(eNimoy1 != pNimoy)
    assert(pNimoy != eNimoy1)
    assert(eNimoy1 != eShatner)
    assert(eShatner != eNimoy1)

    println(eNimoy1)
    println(eNimoy1.hashCode())
  }

  "equals3" should "ok even if exists a canEqual" in {
梦境迷离's avatar
梦境迷离 已提交
101 102 103 104
    @equalsAndHashCode
    class Employee1(name: String, age: Int, var role: String) extends Person(name, age) {
      override def canEqual(that: Any) = that.getClass == classOf[Employee1];
    }
梦境迷离's avatar
梦境迷离 已提交
105 106
    """
      |    @equalsAndHashCode
梦境迷离's avatar
梦境迷离 已提交
107
      |    class Employee2(name: String, age: Int, var role: String) extends Person(name, age) {
梦境迷离's avatar
梦境迷离 已提交
108 109 110 111
      |      override def canEqual(that: Any) = that.getClass == classOf[Employee];
      |    }
      |""".stripMargin should compile
  }
梦境迷离's avatar
梦境迷离 已提交
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137

  "equals4" should "ok when there are members" in {
    @equalsAndHashCode
    class Employee1(name: String, age: Int, var role: String) extends Person(name, age) {
      val i = 0
    }
    """
      |    @equalsAndHashCode
      |    class Employee2(name: String, age: Int, var role: String) extends Person(name, age) {
      |      val i = 0
      |    }
      |""".stripMargin should compile

    @equalsAndHashCode
    class Employee3(name: String, age: Int, var role: String) extends Person(name, age) {
      val i = 0
      def hello: String = ???
    }
    """
      |    @equalsAndHashCode
      |    class Employee4(name: String, age: Int, var role: String) extends Person(name, age) {
      |      val i = 0
      |      def hello: String = ???
      |    }
      |""".stripMargin should compile
  }
梦境迷离's avatar
梦境迷离 已提交
138
}