1<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
3<script:module xmlns:script="http://openoffice.org/2000/script" script:name="util_XReplaceable" script:language="StarBasic">
4
5
6'*************************************************************************
7'
8'  Licensed to the Apache Software Foundation (ASF) under one
9'  or more contributor license agreements.  See the NOTICE file
10'  distributed with this work for additional information
11'  regarding copyright ownership.  The ASF licenses this file
12'  to you under the Apache License, Version 2.0 (the
13'  "License"); you may not use this file except in compliance
14'  with the License.  You may obtain a copy of the License at
15'
16'    http://www.apache.org/licenses/LICENSE-2.0
17'
18'  Unless required by applicable law or agreed to in writing,
19'  software distributed under the License is distributed on an
20'  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
21'  KIND, either express or implied.  See the License for the
22'  specific language governing permissions and limitations
23'  under the License.
24'
25'*************************************************************************
26
27
28
29
30
31'*************************************************************************
32' This Interface/Service test depends on the following GLOBAL variables,
33' which must be specified in the object creation:
34
35'     - Global cStringToSearch As String
36'		should appears more than once
37'     - Global nSearchedEntriesAmount As Integer
38
39'*************************************************************************
40
41
42
43
44
45Sub RunTest()
46
47'*************************************************************************
48' INTERFACE:
49' com.sun.star.util.XReplaceable
50'*************************************************************************
51On Error Goto ErrHndl
52    Dim bOK As Boolean
53    Dim oReplaceDescriptor As Object
54    Dim nReplace As Integer
55
56
57    Test.StartMethod("createReplaceDescriptor()")
58    bOK = true
59    oReplaceDescriptor = oObj.createReplaceDescriptor()
60    bOK = bOK AND hasUnoInterfaces(oReplaceDescriptor, "com.sun.star.util.XReplaceDescriptor")
61    Test.MethodTested("createReplaceDescriptor()", bOK)
62
63    Test.StartMethod("replaceAll()")
64    bOK = true
65    Out.Log("Prepearing descriptor...")
66    oReplaceDescriptor.SearchAll = true
67    oReplaceDescriptor.SearchCaseSensitive = true
68    oReplaceDescriptor.SearchWords = false
69    oReplaceDescriptor.SearchString = cStringToSearch
70    oReplaceDescriptor.ReplaceString = ucase(cStringToSearch)
71
72    nReplace = oObj.replaceAll(oReplaceDescriptor)
73    Out.Log("" &amp; nReplace &amp; " replaces were performed. Expected: " &amp; nSearchedEntriesAmount)
74    bOK = bOK AND nSearchedEntriesAmount = nReplace
75
76    Out.Log("Return to previous state...")
77    oReplaceDescriptor.SearchString = ucase(cStringToSearch)
78    oReplaceDescriptor.ReplaceString = cStringToSearch
79    nReplace = oObj.replaceAll(oReplaceDescriptor)
80    Test.MethodTested("replaceAll()", bOK)
81
82Exit Sub
83ErrHndl:
84    Test.Exception()
85    bOK = false
86    resume next
87End Sub
88</script:module>
89