Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
b5871fa5
Commit
b5871fa5
authored
Aug 15, 2006
by
Mike McCormack
Committed by
Alexandre Julliard
Aug 15, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
infosoft: Add a test for the language neutral word breaker.
parent
5d264f22
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
223 additions
and
0 deletions
+223
-0
configure
configure
+0
-0
configure.ac
configure.ac
+1
-0
Makefile.in
dlls/infosoft/Makefile.in
+2
-0
Makefile.in
dlls/infosoft/tests/Makefile.in
+13
-0
infosoft.c
dlls/infosoft/tests/infosoft.c
+204
-0
Makefile.in
programs/winetest/Makefile.in
+3
-0
No files found.
configure
View file @
b5871fa5
This diff is collapsed.
Click to expand it.
configure.ac
View file @
b5871fa5
...
...
@@ -1641,6 +1641,7 @@ dlls/imaadp32.acm/Makefile
dlls/imagehlp/Makefile
dlls/imm32/Makefile
dlls/infosoft/Makefile
dlls/infosoft/tests/Makefile
dlls/inseng/Makefile
dlls/iphlpapi/Makefile
dlls/iphlpapi/tests/Makefile
...
...
dlls/infosoft/Makefile.in
View file @
b5871fa5
...
...
@@ -11,6 +11,8 @@ C_SRCS = \
infosoft_main.c
\
wordbreaker.c
SUBDIRS
=
tests
@MAKE_DLL_RULES@
### Dependencies:
dlls/infosoft/tests/Makefile.in
0 → 100644
View file @
b5871fa5
TOPSRCDIR
=
@top_srcdir@
TOPOBJDIR
=
../../..
SRCDIR
=
@srcdir@
VPATH
=
@srcdir@
TESTDLL
=
infosoft.dll
IMPORTS
=
ole32 advapi32 kernel32
CTESTS
=
\
infosoft.c
@MAKE_TEST_RULES@
### Dependencies:
dlls/infosoft/tests/infosoft.c
0 → 100644
View file @
b5871fa5
/*
* tests for the language neutral word breaker
*
* Copyright 2006 Mike McCormack for CodeWeavers
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#define COBJMACROS
#include <stdio.h>
#include <ole2.h>
#include "indexsrv.h"
#include "wine/test.h"
#include <initguid.h>
DEFINE_GUID
(
CLSID_wb_neutral
,
0x369647e0
,
0x17b0
,
0x11ce
,
0x99
,
0x50
,
0x00
,
0xaa
,
0x00
,
0x4b
,
0xbb
,
0x1f
);
DEFINE_GUID
(
_IID_IWordBreaker
,
0xD53552C8
,
0x77E3
,
0x101A
,
0xB5
,
0x52
,
0x08
,
0x00
,
0x2B
,
0x33
,
0xB0
,
0xE6
);
static
WCHAR
teststring
[]
=
{
's'
,
'q'
,
'u'
,
'a'
,
'r'
,
'e'
,
' '
,
'c'
,
'i'
,
'r'
,
'c'
,
'l'
,
'e'
,
' '
,
't'
,
'r'
,
'i'
,
'a'
,
'n'
,
'g'
,
'l'
,
'e'
,
' '
,
'b'
,
'o'
,
'x'
,
0
};
struct
expected
{
UINT
ofs
;
UINT
len
;
WCHAR
data
[
10
];
};
static
int
wordnum
;
static
struct
expected
testres
[]
=
{
{
0
,
6
,
{
's'
,
'q'
,
'u'
,
'a'
,
'r'
,
'e'
,
0
}},
{
7
,
6
,
{
'c'
,
'i'
,
'r'
,
'c'
,
'l'
,
'e'
,
0
}},
{
14
,
8
,
{
't'
,
'r'
,
'i'
,
'a'
,
'n'
,
'g'
,
'l'
,
'e'
,
0
}},
{
23
,
3
,
{
'b'
,
'o'
,
'x'
,
0
}},
};
static
HRESULT
WINAPI
ws_QueryInterface
(
IWordSink
*
ws
,
REFIID
riid
,
void
**
ppvObject
)
{
ok
(
0
,
"not expected
\n
"
);
return
E_NOINTERFACE
;
}
static
ULONG
WINAPI
ws_AddRef
(
IWordSink
*
ws
)
{
ok
(
0
,
"not expected
\n
"
);
return
2
;
}
static
ULONG
WINAPI
ws_Release
(
IWordSink
*
ws
)
{
ok
(
0
,
"not expected
\n
"
);
return
1
;
}
static
HRESULT
WINAPI
ws_PutWord
(
IWordSink
*
ws
,
ULONG
cwc
,
const
WCHAR
*
pwcInBuf
,
ULONG
cwcSrcLen
,
ULONG
cwcSrcPos
)
{
ok
(
testres
[
wordnum
].
len
==
cwcSrcLen
,
"wrong length
\n
"
);
ok
(
!
cwcSrcPos
||
(
testres
[
wordnum
].
ofs
==
cwcSrcPos
),
"wrong offset
\n
"
);
ok
(
!
memcmp
(
testres
[
wordnum
].
data
,
pwcInBuf
,
cwcSrcLen
),
"wrong data
\n
"
);
wordnum
++
;
return
S_OK
;
}
static
HRESULT
WINAPI
ws_PutAltWord
(
IWordSink
*
ws
,
ULONG
cwc
,
const
WCHAR
*
pwcInBuf
,
ULONG
cwcSrcLen
,
ULONG
cwcSrcPos
)
{
ok
(
0
,
"not expected
\n
"
);
return
S_OK
;
}
static
HRESULT
WINAPI
ws_StartAltPhrase
(
IWordSink
*
ws
)
{
ok
(
0
,
"not expected
\n
"
);
return
S_OK
;
}
static
HRESULT
WINAPI
ws_EndAltPhrase
(
IWordSink
*
ws
)
{
ok
(
0
,
"not expected
\n
"
);
return
S_OK
;
}
static
HRESULT
WINAPI
ws_PutBreak
(
IWordSink
*
ws
,
WORDREP_BREAK_TYPE
breakType
)
{
ok
(
0
,
"not expected
\n
"
);
return
S_OK
;
}
static
const
IWordSinkVtbl
wsvt
=
{
ws_QueryInterface
,
ws_AddRef
,
ws_Release
,
ws_PutWord
,
ws_PutAltWord
,
ws_StartAltPhrase
,
ws_EndAltPhrase
,
ws_PutBreak
,
};
typedef
struct
_wordsink_impl
{
const
IWordSinkVtbl
*
vtbl
;
}
wordsink_impl
;
static
wordsink_impl
wordsink
=
{
&
wsvt
};
static
HRESULT
WINAPI
fillbuf_none
(
TEXT_SOURCE
*
ts
)
{
return
E_FAIL
;
}
static
HRESULT
WINAPI
fillbuf_many
(
TEXT_SOURCE
*
ts
)
{
int
i
;
if
(
ts
->
awcBuffer
==
NULL
)
ts
->
awcBuffer
=
teststring
;
else
ts
->
awcBuffer
+=
ts
->
iCur
;
if
(
!
ts
->
awcBuffer
[
0
])
return
E_FAIL
;
for
(
i
=
0
;
ts
->
awcBuffer
[
i
]
&&
ts
->
awcBuffer
[
i
]
!=
' '
;
i
++
)
;
if
(
ts
->
awcBuffer
[
i
]
==
' '
)
i
++
;
ts
->
iCur
=
0
;
ts
->
iEnd
=
i
;
return
S_OK
;
}
START_TEST
(
infosoft
)
{
HRESULT
r
;
BOOL
license
;
IWordBreaker
*
wb
=
NULL
;
TEXT_SOURCE
ts
;
r
=
CoInitialize
(
NULL
);
ok
(
r
==
S_OK
,
"failed
\n
"
);
r
=
CoCreateInstance
(
&
CLSID_wb_neutral
,
NULL
,
CLSCTX_INPROC_SERVER
,
&
_IID_IWordBreaker
,
(
LPVOID
)
&
wb
);
if
(
FAILED
(
r
))
return
;
r
=
IWordBreaker_Init
(
wb
,
FALSE
,
0x100
,
&
license
);
ok
(
r
==
S_OK
,
"failed to init the wordbreaker
\n
"
);
/* ok( license == TRUE, "should be no license\n"); */
wordnum
=
0
;
ts
.
pfnFillTextBuffer
=
fillbuf_none
;
ts
.
awcBuffer
=
teststring
;
ts
.
iEnd
=
lstrlenW
(
ts
.
awcBuffer
);
ts
.
iCur
=
0
;
r
=
IWordBreaker_BreakText
(
wb
,
&
ts
,
(
IWordSink
*
)
&
wordsink
,
NULL
);
ok
(
r
==
S_OK
,
"failed
\n
"
);
ok
(
wordnum
==
4
,
"words not processed
\n
"
);
wordnum
=
0
;
ts
.
pfnFillTextBuffer
=
fillbuf_many
;
ts
.
awcBuffer
=
teststring
;
ts
.
iEnd
=
0
;
ts
.
iCur
=
0
;
r
=
fillbuf_many
(
&
ts
);
ok
(
r
==
S_OK
,
"failed
\n
"
);
r
=
IWordBreaker_BreakText
(
wb
,
&
ts
,
(
IWordSink
*
)
&
wordsink
,
NULL
);
ok
(
r
==
S_OK
,
"failed
\n
"
);
ok
(
wordnum
==
4
,
"words not processed
\n
"
);
IWordBreaker_Release
(
wb
);
CoUninitialize
();
}
programs/winetest/Makefile.in
View file @
b5871fa5
...
...
@@ -34,6 +34,7 @@ TESTBINS = \
dsound_test.exe
$(DLLEXT)
\
gdi32_test.exe
$(DLLEXT)
\
hlink_test.exe
$(DLLEXT)
\
infosoft_test.exe
$(DLLEXT)
\
iphlpapi_test.exe
$(DLLEXT)
\
kernel32_test.exe
$(DLLEXT)
\
lz32_test.exe
$(DLLEXT)
\
...
...
@@ -134,6 +135,8 @@ gdi32_test.exe$(DLLEXT): $(DLLDIR)/gdi/tests/gdi32_test.exe$(DLLEXT)
cp
$(DLLDIR)
/gdi/tests/gdi32_test.exe
$(DLLEXT)
$@
&&
$(STRIP)
$@
hlink_test.exe$(DLLEXT)
:
$(DLLDIR)/hlink/tests/hlink_test.exe$(DLLEXT)
cp
$(DLLDIR)
/hlink/tests/hlink_test.exe
$(DLLEXT)
$@
&&
$(STRIP)
$@
infosoft_test.exe$(DLLEXT)
:
$(DLLDIR)/infosoft/tests/infosoft_test.exe$(DLLEXT)
cp
$(DLLDIR)
/infosoft/tests/infosoft_test.exe
$(DLLEXT)
$@
&&
$(STRIP)
$@
iphlpapi_test.exe$(DLLEXT)
:
$(DLLDIR)/iphlpapi/tests/iphlpapi_test.exe$(DLLEXT)
cp
$(DLLDIR)
/iphlpapi/tests/iphlpapi_test.exe
$(DLLEXT)
$@
&&
$(STRIP)
$@
kernel32_test.exe$(DLLEXT)
:
$(DLLDIR)/kernel/tests/kernel32_test.exe$(DLLEXT)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment