- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
给定一个用 CycleJs 构建的独立组件(该组件工作正常):
import isolate from '@cycle/isolate';
import { div, ul, li, a } from '@cycle/dom';
function intent(domSource){
const changeString$ = domSource
.select('.string').events('click')
.map( ev => ev.target.dataset.position);
return { changeString$ };
}
function model(actions, props$){
const { changeString$ } = actions;
return props$.map( props => {
return changeString$
.startWith(props.initialString)
.map( activePosition => ({ activePosition, preset : props.preset }));
}).flatten().remember();
}
function view(state$){
return state$.map( state => (
div(
ul(
state.preset.map( (string, position) => (
li(
a({
attrs : {
href : '#',
'data-pitch' : string.pitch,
'data-frequency' : string.frequency,
'data-position' : position,
class : ['string', parseInt(state.activePosition, 10) === position ? 'active' : ''].join(' ')
}
},
string.name)
)
))
)
)
));
}
function stringSelector(sources){
const actions = intent(sources.DOM);
const state$ = model(actions, sources.props);
const vdom$ = view(state$);
return {
DOM: vdom$,
value: state$
};
}
export default isolate(stringSelector, '.string-selector');
我已经尝试使用@cycle/time
测试行为:
import test from 'tape';
import xs from 'xstream';
import { mockDOMSource } from '@cycle/dom';
import { mockTimeSource } from '@cycle/time';
import stringSelector from '../../../src/js/component/stringSelector/index.js';
test('string selector', t => {
t.plan(1);
const Time = mockTimeSource();
const e2Click$ = Time.diagram('-------x-------|');
const a2Click$ = Time.diagram('---x------x----|');
const expectedState$ = Time.diagram('0--1---0--1----|');
const DOM = mockDOMSource({
'.string[data-picth=e2]': {
click: e2Click$
},
'.string[data-picth=a2]': {
click: a2Click$
},
});
const selector = stringSelector({
DOM,
props: xs.of({
preset: {
strings: [{
name: 'E',
pitch: 'e2',
frequency: 82.41
}, {
name: 'A',
pitch: 'a2',
frequency: 110.0
}]
},
initialString: 0
})
});
const activePosition$ = selector.value.map( state => state.activePosition );
Time.assertEqual(activePosition$, expectedState$);
Time.run(t.end.bind(t));
});
但是activePosition$
流直接结束。我不知道它是来自 DOM 的模拟方式(事件似乎没有被触发)还是我构建 activePosition$
流的方式?
运行测试时,我收到以下消息:
Expected
0--1---0--1----|
Got
(0|)
Failed because:
* Length of actual and expected differs
* Expected type next at time 0 but got complete
* Expected stream to complete at 60 but completed at 0
最佳答案
我想我发现了问题。
事实是,使用模拟的 DOM 驱动程序,您需要为与 DOM.select('...').events
中使用的选择器完全相同的选择器创建事件。
在您的情况下,您选择了 .string
但您在 .string[data-pitch=..]
上模拟了一个事件,这将在应用端不匹配.
请记住,测试端不涉及真正的 DOM。在您的情况下,当您假点击选择器 .string
时,无论您的组件呈现什么,它都只会生成一个事件。
我想你想在这里实现的是伪造事件中的数据。
你或许可以这样做:
const clicks = Time.diagram('---0---1----0---|').map(position => {
// this will create a fake DOM event that contains the properties you are reading
return {target: {dataset: {position: position }}}
})
const DOM = mockDOMSource({
'.string': {
click: clicks
}
});
关于javascript - 无法在 CycleJs 测试中的模拟 DOM 源中流式传输事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53723851/
我正在尝试将资源/流设置为 Android 中的墙纸。我使用 WallpaperManager 类及其方法 setResource/setStream 来执行此操作。我通常在将图像设置为墙纸之前使用
我正在编写脚本来通过反复取消对象直到 EOF 来处理(非常大的)文件。我想对文件进行分区并让单独的进程(在云中)解开并处理单独的部分。 但是我的分区器并不智能,它不知道文件中 pickle 对象之间的
我正在实现图形表示。 Map>> g = new HashMap<>(); Graph 类中的一个方法是 List> getAllEdges() { List> allEdges = new
我正在通过 MediaCodec 处理实时流,并且有一个场景,其中 MediaFormat 在流中更改(即:正在解码的视频的分辨率发生更改)。鉴于我将解码器附加到 Surface 以在我检测到传入流的
嗨 iCoders 目前我正在开发一个使用 OpenTok/TokBox iOS SDK 进行直播的应用程序。我怀疑有多少订阅者可以订阅发布者发布的流。我在 openTok 论坛中搜索过这个但是没有找
我是一名优秀的程序员,十分优秀!