3

我正在尝试spec.ts为我的应用程序创建一个。可悲的是,这是使用来自ionic-angular. 现在,当我尝试配置模块时,我需要为其提供 LoadingController(因为它位于模块的构造函数中)。

我目前遇到的问题是 LoadingController 想要提供一个App对象/实例。(_app: App参数)

我很绝望,所以我问离子自己。github #8539

但是他们结束了我的问题,因为这是一个问题,而不是一个问题,尽管我在意识到他们没有回应的问题上遇到了问题。如果这是不可能的/没人知道怎么做,那将是一种耻辱,因为它是一个非常酷的功能,它不仅影响 LoadingController,而且 AlertController 和 ToastController 也受此影响。

我的测试台配置 atm:

TestBed.configureTestingModule({
    declarations: [EventsPage],
    schemas: [CUSTOM_ELEMENTS_SCHEMA],
    providers: [
      {provide: APICaller, useValue: mockAPICaller},
      {provide: NavController, useValue: mockNavController },
      {provide: LoadingController, useValue: ???????}, //it seems like everything I try to enter here fails.
    ],
    imports: [FormsModule]
  });

和 EventsPage 构造函数:

constructor(public apiCaller: APICaller, public navCtrl: NavController,
             public loadingCtrl: LoadingController){}

编辑:LoadingController 的使用

getEvents() {
    // setup a loadingscreen
     let loading = this.loadingCtrl.create({
      content: "Loading..."
    }); 
   // present the loadingscreen
    loading.present();

    // reset the noEvents boolean.
    this.noEvents = true;

    // call the api and get all events
    this.apiCaller.getEvents()
    .subscribe(response => {
      // response is list of events
      this.events = response;
      // if the event is not empty, set noEvents to false.
      if (this.events.length > 0) {
        this.noEvents = false;
      }
      // close the loading message.
     loading.dismiss();
    });
  }

这将导致这个 loadingspinner (使用不同的文本)

离子的加载

4

1 回答 1

7

使用这种类型的东西,您可能不想在 UI 中测试任何东西(关于使用LoadingController. 您应该测试的是组件的行为。因此,当您LoadingControllerLoadingController. 这样做你可以编写测试,如

expect(loadingController.someMethod).toHaveBeenCalled();
// or
expect(loadingController.someMethod).toHaveBeenCalledWith(args);

您的模拟也不必遵循被模拟项目的实际结构。例如LoadingController.create返回一个Loading对象。在你的模拟中,你不需要这个。如果你愿意,你可以在调用时返回模拟本身,create并且在模拟中只拥有Loading应该拥有的方法。

请记住,您只是在测试控制器的行为。模拟实际上做了什么并不重要LoadingController,只是您能够调用方法,并检查测试以确保在预期调用它们时调用它们。除此之外,你应该假设真正的LoadingController作品。

所以你可以有类似的东西

let mockLoadingController = {
  // Tried `create: jasmine.createSpy('create').and.returnValue(this)
  // seem this doesn't work. We just create the spy later
  create: (args: any) => { return this; },
  present: jasmine.createSpy('present'),
  dismiss: jasmine.createSpy('dismiss')
};
spyOn(mockLoadingController, 'create').and.returnValue(mockLoadingController);

{ provide: LoadingController, useValue: mockLoadingController }

然后在你的测试中你可以做类似的事情

it('should create loader with args ...', () => {
  ...
  expect(mockLoadingController.create).toHaveBeenCalledWith({...})
})
it('should present the loader', () => {
  ...
  expect(mockLoadingController.present).toHaveBeenCalled();
})
it('should dismiss the loader when the api call returns', async(() => {
  ..
  expect(mockLoadingController.dismiss).toHaveBeenCalled();
}))

这是我现在用来测试的

class LoadingController {
  create(args: any) { return this; }
  present() {}
  dismiss() {}
}

@Component({
  template: ''
})
class TestComponent {
  constructor(private loadingController: LoadingController) {}

  setEvents() {
    let loading = this.loadingController.create({hello: 'world'});

    loading.present();
    loading.dismiss();
  }
}

describe('component: TestComponent', () => {
  let mockLoadingController;

  beforeEach(async(() => {
    mockLoadingController = {
      create: (args: any) => { return this; },
      present: jasmine.createSpy('present'),
      dismiss: jasmine.createSpy('dismiss')
    };
    spyOn(mockLoadingController, 'create').and.returnValue(mockLoadingController);

    TestBed.configureTestingModule({
      declarations: [TestComponent],
      providers: [
        { provide: LoadingController, useValue: mockLoadingController }
      ]
    });
  }));

  it('should calling loading controller', () => {
    let comp = TestBed.createComponent(TestComponent).componentInstance;
    comp.setEvents();

    expect(mockLoadingController.create).toHaveBeenCalledWith({ hello: 'world'});
    expect(mockLoadingController.present).toHaveBeenCalled();
    expect(mockLoadingController.dismiss).toHaveBeenCalled();
  });
});

也可以看看:

于 2016-10-11T13:47:38.567 回答