трепетание: сравнить два объекта и получил ОШИБКУ: ожидается: VenuesDetails: <VenuesDetails>в модульном тесте - PullRequest
1 голос
/ 21 апреля 2020

Я использую Equatable для сравнения 2 объектов в модульном тестировании. Это мой объект, который расширен от Equatable:

import 'dart:convert';

import 'package:equatable/equatable.dart';

class VenuesDetails extends Equatable {
  Response response;

  VenuesDetails({
    this.response,
  });

  factory VenuesDetails.fromJson(Map<String, dynamic> json) => VenuesDetails(
        response: Response.fromJson(json["response"]),
      );

  Map<String, dynamic> toJson() => {
        "response": response.toJson(),
      };

  @override
  List<Object> get props => [response];
}

class Response extends Equatable {
  Venue venue;

  Response({
    this.venue,
  });

  factory Response.fromJson(Map<String, dynamic> json) => Response(
        venue: Venue.fromJson(json["venue"]),
      );

  Map<String, dynamic> toJson() => {
        "venue": venue.toJson(),
      };

  @override
  List<Object> get props => [venue];
}

class Venue extends Equatable {
  String id;
  String name;
  Contact contact;
  Location location;
  String canonicalUrl;
  List<Category> categories;
  int createdAt;
  String shortUrl;
  String timeZone;

  Venue({
    this.id,
    this.name,
    this.contact,
    this.location,
    this.canonicalUrl,
    this.categories,
    this.createdAt,
    this.shortUrl,
    this.timeZone,
  });

  factory Venue.fromJson(Map<String, dynamic> json) => Venue(
        id: json["id"],
        name: json["name"],
        contact: Contact.fromJson(json["contact"]),
        location: Location.fromJson(json["location"]),
        canonicalUrl: json["canonicalUrl"],
        categories: List<Category>.from(
            json["categories"].map((x) => Category.fromJson(x))),
        createdAt: json["createdAt"],
        shortUrl: json["shortUrl"],
        timeZone: json["timeZone"],
      );

  Map<String, dynamic> toJson() => {
        "id": id,
        "name": name,
        "contact": contact.toJson(),
        "location": location.toJson(),
        "canonicalUrl": canonicalUrl,
        "categories": List<dynamic>.from(categories.map((x) => x.toJson())),
        "createdAt": createdAt,
        "shortUrl": shortUrl,
        "timeZone": timeZone,
      };

  @override
  List<Object> get props => [
        id,
        name,
        contact,
        location,
        canonicalUrl,
        categories,
        createdAt,
        shortUrl,
        timeZone,
      ];
}

class Category extends Equatable {
  String id;
  String name;
  String pluralName;
  String shortName;
  Icon icon;
  bool primary;

  Category({
    this.id,
    this.name,
    this.pluralName,
    this.shortName,
    this.icon,
    this.primary,
  });

  factory Category.fromJson(Map<String, dynamic> json) => Category(
        id: json["id"],
        name: json["name"],
        pluralName: json["pluralName"],
        shortName: json["shortName"],
        icon: Icon.fromJson(json["icon"]),
        primary: json["primary"],
      );

  Map<String, dynamic> toJson() => {
        "id": id,
        "name": name,
        "pluralName": pluralName,
        "shortName": shortName,
        "icon": icon.toJson(),
        "primary": primary,
      };

  @override
  List<Object> get props => [
        id,
        name,
        pluralName,
        shortName,
        icon,
        primary,
      ];
}

class Icon extends Equatable {
  String prefix;
  String suffix;

  Icon({
    this.prefix,
    this.suffix,
  });

  factory Icon.fromJson(Map<String, dynamic> json) => Icon(
        prefix: json["prefix"],
        suffix: json["suffix"],
      );

  Map<String, dynamic> toJson() => {
        "prefix": prefix,
        "suffix": suffix,
      };

  @override
  List<Object> get props => [
        prefix,
        suffix,
      ];
}

class Contact extends Equatable {
  Contact();

  factory Contact.fromJson(Map<String, dynamic> json) => Contact();

  Map<String, dynamic> toJson() => {};

  @override
  List<Object> get props => [];
}

class Location extends Equatable {
  double lat;
  double lng;
  List<LabeledLatLng> labeledLatLngs;
  String cc;
  String country;
  List<String> formattedAddress;

  Location({
    this.lat,
    this.lng,
    this.labeledLatLngs,
    this.cc,
    this.country,
    this.formattedAddress,
  });

  factory Location.fromJson(Map<String, dynamic> json) => Location(
        lat: json["lat"].toDouble(),
        lng: json["lng"].toDouble(),
        labeledLatLngs: List<LabeledLatLng>.from(
            json["labeledLatLngs"].map((x) => LabeledLatLng.fromJson(x))),
        cc: json["cc"],
        country: json["country"],
        formattedAddress:
            List<String>.from(json["formattedAddress"].map((x) => x)),
      );

  Map<String, dynamic> toJson() => {
        "lat": lat,
        "lng": lng,
        "labeledLatLngs":
            List<dynamic>.from(labeledLatLngs.map((x) => x.toJson())),
        "cc": cc,
        "country": country,
        "formattedAddress": List<dynamic>.from(formattedAddress.map((x) => x)),
      };

  @override
  List<Object> get props => [
        lat,
        lng,
        labeledLatLngs,
        cc,
        country,
        formattedAddress,
      ];
}

class LabeledLatLng extends Equatable {
  String label;
  double lat;
  double lng;

  LabeledLatLng({
    this.label,
    this.lat,
    this.lng,
  });

  factory LabeledLatLng.fromJson(Map<String, dynamic> json) => LabeledLatLng(
        label: json["label"],
        lat: json["lat"].toDouble(),
        lng: json["lng"].toDouble(),
      );

  Map<String, dynamic> toJson() => {
        "label": label,
        "lat": lat,
        "lng": lng,
      };

  @override
  List<Object> get props => [
        label,
        lat,
        lng,
      ];
}

Я пишу этот тест для получения данных из удаленного репозитория:

test ('должен выполнить запрос get, когда код ответа 200 (успех)', () asyn c {

when(mockHttpCLient.get(any, headers: anyNamed('headers'))).thenAnswer(
    (_) async => http.Response(fixture('venues_details.json'), 200));

final result = await foursquareRepositoryImpl.getVenuesDetails(venueId);

expect(result, venue);
  },
);

Но в expect(result, venue); я получил эту ошибку:

 getVenuesDetails should perform a get request when the response code is 200 (success):

ERROR: Expected: VenuesDetails:<VenuesDetails>
  Actual: VenuesDetails:<VenuesDetails>

package:test_api                                            expect
package:flutter_test/src/widget_tester.dart 234:3           expect
test/repository/foursquare_repository_impl_test.dart 110:9  main.<fn>.<fn>

Где моя ошибка в использовании Equatable?

1 Ответ

1 голос
/ 21 апреля 2020

Как указано на странице пакета на pub.dev:

Примечание: Equatable предназначен для работы только с неизменяемыми объектами, поэтому все переменные-члены должны быть окончательными (это не просто функция Equatable - переопределение hashCode с изменяемым значением может нарушить коллекции на основе ha sh.

Я заметил, что ваши поля не являются окончательными, поэтому это может нарушить равенство

...